Add gql mods for implementing one-of
This commit is contained in:
@@ -54,10 +54,6 @@ export type AggregationInput = {
|
||||
enum?: InputMaybe<EnumAggregation>;
|
||||
};
|
||||
|
||||
export type AndFilter = {
|
||||
filters: Array<FilterInput>;
|
||||
};
|
||||
|
||||
export type BankFeaturesGql = {
|
||||
__typename?: "BankFeaturesGQL";
|
||||
bankAngle: Scalars["Float"]["output"];
|
||||
@@ -134,14 +130,14 @@ export type EnumAggregation = {
|
||||
};
|
||||
|
||||
export type FilterInput = {
|
||||
andFilters?: InputMaybe<AndFilter>;
|
||||
andFilters?: InputMaybe<Array<FilterInput>>;
|
||||
cueBallSpeed?: InputMaybe<RangeFilter>;
|
||||
cueObjectAngle?: InputMaybe<RangeFilter>;
|
||||
cueObjectDistance?: InputMaybe<RangeFilter>;
|
||||
difficulty?: InputMaybe<RangeFilter>;
|
||||
intendedPocketType?: InputMaybe<Array<PocketEnum>>;
|
||||
make?: InputMaybe<Array<Scalars["Boolean"]["input"]>>;
|
||||
orFilters?: InputMaybe<OrFilter>;
|
||||
orFilters?: InputMaybe<Array<FilterInput>>;
|
||||
shotDirection?: InputMaybe<Array<ShotDirectionEnum>>;
|
||||
tags?: InputMaybe<Array<VideoTagInput>>;
|
||||
targetPocketDistance?: InputMaybe<RangeFilter>;
|
||||
@@ -236,10 +232,6 @@ export type MutationSetLoggerLevelArgs = {
|
||||
path: Scalars["String"]["input"];
|
||||
};
|
||||
|
||||
export type OrFilter = {
|
||||
filters: Array<FilterInput>;
|
||||
};
|
||||
|
||||
export type PageInfoGql = {
|
||||
__typename?: "PageInfoGQL";
|
||||
endCursor?: Maybe<Scalars["String"]["output"]>;
|
||||
@@ -329,11 +321,6 @@ export type RangeFilter = {
|
||||
lessThan?: InputMaybe<Scalars["Float"]["input"]>;
|
||||
};
|
||||
|
||||
export type SerializedShotPathsGql = {
|
||||
__typename?: "SerializedShotPathsGQL";
|
||||
b64EncodedBuffer?: Maybe<Scalars["String"]["output"]>;
|
||||
};
|
||||
|
||||
export enum ShotDirectionEnum {
|
||||
Left = "LEFT",
|
||||
Right = "RIGHT",
|
||||
@@ -348,7 +335,6 @@ export type ShotGql = {
|
||||
endFrame: Scalars["Int"]["output"];
|
||||
id: Scalars["Int"]["output"];
|
||||
pocketingIntentionFeatures?: Maybe<PocketingIntentionFeaturesGql>;
|
||||
serializedShotPaths?: Maybe<SerializedShotPathsGql>;
|
||||
startFrame: Scalars["Int"]["output"];
|
||||
updatedAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
user?: Maybe<UserGql>;
|
||||
|
||||
Reference in New Issue
Block a user