Add ids to GetShotsResult
This commit is contained in:
parent
33723f4ea2
commit
59fe332fe0
@ -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>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -244,6 +244,7 @@ type MakePercentageIntervalGQL {
|
|||||||
type GetShotsResult {
|
type GetShotsResult {
|
||||||
shots: [ShotGQL!]!
|
shots: [ShotGQL!]!
|
||||||
count: Int
|
count: Int
|
||||||
|
ids: [Int!]!
|
||||||
}
|
}
|
||||||
|
|
||||||
type ShotGQL {
|
type ShotGQL {
|
||||||
|
Loading…
Reference in New Issue
Block a user