Compare commits

...

1 Commits

Author SHA1 Message Date
35a8d71128 Make shots pagination optional 2024-08-16 20:17:10 -06:00
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -1,6 +1,6 @@
query GetShots(
$filterInput: FilterInput!
$shotsPagination: GetShotsPagination
$shotsPagination: GetShotsPagination = null
$limit: Int
$includeCreatedAt: Boolean! = false
$includeUpdatedAt: Boolean! = false