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!