From a2d9e688e909221f396eb8050c04c5a1e05c5399 Mon Sep 17 00:00:00 2001 From: Loewy Date: Thu, 31 Oct 2024 15:21:54 -0700 Subject: [PATCH] add countRespectsLimit --- src/index.tsx | 4 ++++ src/operations/shots.gql | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index bdda3d9..6168903 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2891,6 +2891,7 @@ export type GetShotsWithMetadataFilterResultQueryVariables = Exact<{ shotsOrdering?: InputMaybe; limit?: InputMaybe; ids?: InputMaybe | Scalars["Int"]["input"]>; + countRespectsLimit?: InputMaybe; }>; export type GetShotsWithMetadataFilterResultQuery = { @@ -4672,12 +4673,14 @@ export const GetShotsWithMetadataFilterResultDocument = gql` $shotsOrdering: GetShotsOrdering $limit: Int $ids: [Int!] + $countRespectsLimit: Boolean ) { getOrderedShots( filterInput: $filterInput shotsOrdering: $shotsOrdering limit: $limit ids: $ids + countRespectsLimit: $countRespectsLimit ) { count shots { @@ -4705,6 +4708,7 @@ export const GetShotsWithMetadataFilterResultDocument = gql` * shotsOrdering: // value for 'shotsOrdering' * limit: // value for 'limit' * ids: // value for 'ids' + * countRespectsLimit: // value for 'countRespectsLimit' * }, * }); */ diff --git a/src/operations/shots.gql b/src/operations/shots.gql index 27798c4..8473f10 100644 --- a/src/operations/shots.gql +++ b/src/operations/shots.gql @@ -67,12 +67,14 @@ query GetShotsWithMetadataFilterResult( $shotsOrdering: GetShotsOrdering $limit: Int $ids: [Int!] + $countRespectsLimit: Boolean ) { getOrderedShots( filterInput: $filterInput shotsOrdering: $shotsOrdering limit: $limit ids: $ids + countRespectsLimit: $countRespectsLimit ) { count shots { -- 2.46.1