From 35a8d7112813a1fd294a5a75523f0a68774812d2 Mon Sep 17 00:00:00 2001 From: Kat Huang Date: Fri, 16 Aug 2024 20:17:10 -0600 Subject: [PATCH] Make shots pagination optional --- src/index.tsx | 2 +- src/operations/shots.gql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 6a473d8..054082c 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2463,7 +2463,7 @@ export type GetVideoMakePercentageIntervalsQueryResult = Apollo.QueryResult< export const GetShotsDocument = gql` query GetShots( $filterInput: FilterInput! - $shotsPagination: GetShotsPagination + $shotsPagination: GetShotsPagination = null $limit: Int $includeCreatedAt: Boolean! = false $includeUpdatedAt: Boolean! = false diff --git a/src/operations/shots.gql b/src/operations/shots.gql index 5c486f9..536cd1d 100644 --- a/src/operations/shots.gql +++ b/src/operations/shots.gql @@ -1,6 +1,6 @@ query GetShots( $filterInput: FilterInput! - $shotsPagination: GetShotsPagination + $shotsPagination: GetShotsPagination = null $limit: Int $includeCreatedAt: Boolean! = false $includeUpdatedAt: Boolean! = false