diff --git a/src/index.tsx b/src/index.tsx index 89e6edf..a63ea80 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -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 diff --git a/src/operations/shots.gql b/src/operations/shots.gql index 4e6ab40..151a147 100644 --- a/src/operations/shots.gql +++ b/src/operations/shots.gql @@ -72,6 +72,7 @@ query GetShotsWithJustIds( shotsOrdering: $shotsOrdering limit: $limit ) { + count shots { id videoId