From 59fe332fe01c5b9844e89c7e443e542bf12355ae Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 26 Sep 2024 21:47:44 -0600 Subject: [PATCH] Add ids to GetShotsResult --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) 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 {