diff --git a/src/index.tsx b/src/index.tsx index f2c34a9..da78837 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1509,6 +1509,7 @@ export type GetShotsPagination = { export type GetShotsResult = { __typename?: "GetShotsResult"; count?: Maybe; + ids: Array; shots: Array; }; diff --git a/src/schema.gql b/src/schema.gql index cfedad2..935eae3 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -244,6 +244,7 @@ type MakePercentageIntervalGQL { type GetShotsResult { shots: [ShotGQL!]! count: Int + ids: [Int!]! } type ShotGQL {