Add ids to GetShotsResult

This commit is contained in:
Ivan Malison 2024-09-26 21:47:44 -06:00
parent 33723f4ea2
commit 59fe332fe0
2 changed files with 2 additions and 0 deletions

View File

@ -1509,6 +1509,7 @@ export type GetShotsPagination = {
export type GetShotsResult = { export type GetShotsResult = {
__typename?: "GetShotsResult"; __typename?: "GetShotsResult";
count?: Maybe<Scalars["Int"]["output"]>; count?: Maybe<Scalars["Int"]["output"]>;
ids: Array<Scalars["Int"]["output"]>;
shots: Array<ShotGql>; shots: Array<ShotGql>;
}; };

View File

@ -244,6 +244,7 @@ type MakePercentageIntervalGQL {
type GetShotsResult { type GetShotsResult {
shots: [ShotGQL!]! shots: [ShotGQL!]!
count: Int count: Int
ids: [Int!]!
} }
type ShotGQL { type ShotGQL {