diff --git a/src/index.tsx b/src/index.tsx index 5a5bbe8..9bbb22b 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -134,6 +134,7 @@ export type FilterInput = { cueBallSpeed?: InputMaybe; cueObjectAngle?: InputMaybe; cueObjectDistance?: InputMaybe; + gameType?: InputMaybe; intendedPocketType?: InputMaybe; make?: InputMaybe; orFilters?: InputMaybe; @@ -143,6 +144,10 @@ export type FilterInput = { videoId?: InputMaybe>; }; +export type GameTypeInputGql = { + value: ValueFilterString; +}; + export type GetUploadLinkReturn = { __typename?: "GetUploadLinkReturn"; headers: Array>; diff --git a/src/schema.gql b/src/schema.gql index 16034fc..db4f3be 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -64,6 +64,7 @@ input FilterInput { videoId: [Int!] = null userId: [Int!] = null make: MakeInputGQL = null + gameType: GameTypeInputGQL = null } input AndFilter { @@ -115,6 +116,10 @@ input ValueFilterBool { equals: String = null } +input GameTypeInputGQL { + value: ValueFilterString! +} + type UserGQL { id: Int! firebaseUid: String!