diff --git a/src/index.tsx b/src/index.tsx index da78837..6ffa9f8 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1734,6 +1734,7 @@ export type Query = { getPlayTime: UserPlayTimeGql; getShotAnnotationTypes: Array; getShots: Array; + getShotsByIds: Array; getShotsWithMetadata: GetShotsResult; getUser?: Maybe; getUserTags: Array; @@ -1767,6 +1768,10 @@ export type QueryGetShotsArgs = { shotsPagination?: InputMaybe; }; +export type QueryGetShotsByIdsArgs = { + ids: Array; +}; + export type QueryGetShotsWithMetadataArgs = { filterInput: FilterInput; limit?: Scalars["Int"]["input"]; diff --git a/src/schema.gql b/src/schema.gql index 935eae3..8ba6c84 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -19,6 +19,7 @@ type Query { shotsPagination: GetShotsPagination = null limit: Int! = 500 ): [ShotGQL!]! + getShotsByIds(ids: [Int!]!): [ShotGQL!]! getShotAnnotationTypes(errorTypes: Boolean = false): [ShotAnnotationTypeGQL!]! getUser(userId: Int!): UserGQL getLoggedInUser: UserGQL