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