add count to return for get shots with just ids
All checks were successful
Tests / Tests (pull_request) Successful in 14s
All checks were successful
Tests / Tests (pull_request) Successful in 14s
This commit is contained in:
parent
c4868e7ebe
commit
985fa8b8e5
@ -3014,6 +3014,7 @@ export type GetShotsWithJustIdsQuery = {
|
||||
__typename?: "Query";
|
||||
getOrderedShots: {
|
||||
__typename?: "GetShotsResult";
|
||||
count?: number | null;
|
||||
shots: Array<{ __typename?: "ShotGQL"; id: number; videoId: number }>;
|
||||
};
|
||||
};
|
||||
@ -5055,6 +5056,7 @@ export const GetShotsWithJustIdsDocument = gql`
|
||||
shotsOrdering: $shotsOrdering
|
||||
limit: $limit
|
||||
) {
|
||||
count
|
||||
shots {
|
||||
id
|
||||
videoId
|
||||
|
@ -72,6 +72,7 @@ query GetShotsWithJustIds(
|
||||
shotsOrdering: $shotsOrdering
|
||||
limit: $limit
|
||||
) {
|
||||
count
|
||||
shots {
|
||||
id
|
||||
videoId
|
||||
|
Loading…
Reference in New Issue
Block a user