Update get shots with metadata #67

Merged
colonelpanic merged 1 commits from kat/update-gql into master 2024-10-03 11:47:21 -06:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit bacd9e77f0 - Show all commits

View File

@ -1774,6 +1774,7 @@ export type QueryGetShotsByIdsArgs = {
export type QueryGetShotsWithMetadataArgs = {
filterInput: FilterInput;
ids?: InputMaybe<Array<Scalars["Int"]["input"]>>;
limit?: Scalars["Int"]["input"];
shotsPagination?: InputMaybe<GetShotsPagination>;
};

View File

@ -11,6 +11,7 @@ type Query {
): [MakePercentageIntervalGQL!]!
getShotsWithMetadata(
filterInput: FilterInput!
ids: [Int!] = null
shotsPagination: GetShotsPagination = null
limit: Int! = 500
): GetShotsResult!