From bacd9e77f0cd0116d7b39f023b4e6049fd0cd0ed Mon Sep 17 00:00:00 2001 From: Kat Huang Date: Thu, 3 Oct 2024 11:37:28 -0600 Subject: [PATCH] Update get shots with metadata --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 9c9801c..9f8acf9 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1774,6 +1774,7 @@ export type QueryGetShotsByIdsArgs = { export type QueryGetShotsWithMetadataArgs = { filterInput: FilterInput; + ids?: InputMaybe>; limit?: Scalars["Int"]["input"]; shotsPagination?: InputMaybe; }; diff --git a/src/schema.gql b/src/schema.gql index 8ba6c84..76ca0bf 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -11,6 +11,7 @@ type Query { ): [MakePercentageIntervalGQL!]! getShotsWithMetadata( filterInput: FilterInput! + ids: [Int!] = null shotsPagination: GetShotsPagination = null limit: Int! = 500 ): GetShotsResult! -- 2.46.1