Add count to GetShotsWithJustIds operation return #127

Merged
loewy merged 2 commits from loewy/add-count-to-getshots-with-just-ids into master 2024-11-11 21:13:20 -07:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit 985fa8b8e5 - Show all commits

View File

@ -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

View File

@ -72,6 +72,7 @@ query GetShotsWithJustIds(
shotsOrdering: $shotsOrdering
limit: $limit
) {
count
shots {
id
videoId