This commit is contained in:
parent
1710ae451c
commit
0982b9e60c
@ -2211,6 +2211,7 @@ export type QueryGetMedalsArgs = {
|
||||
};
|
||||
|
||||
export type QueryGetOrderedShotsArgs = {
|
||||
countRespectsLimit?: Scalars["Boolean"]["input"];
|
||||
filterInput: FilterInput;
|
||||
ids?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
||||
limit?: Scalars["Int"]["input"];
|
||||
@ -2226,6 +2227,7 @@ export type QueryGetShotAnnotationTypesArgs = {
|
||||
};
|
||||
|
||||
export type QueryGetShotsArgs = {
|
||||
countRespectsLimit?: Scalars["Boolean"]["input"];
|
||||
filterInput: FilterInput;
|
||||
limit?: Scalars["Int"]["input"];
|
||||
shotsPagination?: InputMaybe<GetShotsPagination>;
|
||||
@ -2236,6 +2238,7 @@ export type QueryGetShotsByIdsArgs = {
|
||||
};
|
||||
|
||||
export type QueryGetShotsWithMetadataArgs = {
|
||||
countRespectsLimit?: Scalars["Boolean"]["input"];
|
||||
filterInput: FilterInput;
|
||||
ids?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
||||
limit?: Scalars["Int"]["input"];
|
||||
|
@ -15,17 +15,20 @@ type Query {
|
||||
ids: [Int!] = null
|
||||
shotsOrdering: GetShotsOrdering = null
|
||||
limit: Int! = 500
|
||||
countRespectsLimit: Boolean! = false
|
||||
): GetShotsResult!
|
||||
getShotsWithMetadata(
|
||||
filterInput: FilterInput!
|
||||
ids: [Int!] = null
|
||||
shotsPagination: GetShotsPagination = null
|
||||
limit: Int! = 500
|
||||
countRespectsLimit: Boolean! = false
|
||||
): GetShotsResult!
|
||||
getShots(
|
||||
filterInput: FilterInput!
|
||||
shotsPagination: GetShotsPagination = null
|
||||
limit: Int! = 500
|
||||
countRespectsLimit: Boolean! = false
|
||||
): [ShotGQL!]!
|
||||
getShotsByIds(ids: [Int!]!): [ShotGQL!]!
|
||||
getShotAnnotationTypes(errorTypes: Boolean = false): [ShotAnnotationTypeGQL!]!
|
||||
|
Loading…
Reference in New Issue
Block a user