Rename filters for consistency
This commit is contained in:
parent
1000eb6d2c
commit
18c12e60fe
@ -124,14 +124,6 @@ export enum DeviceTypeEnum {
|
|||||||
Ios = "IOS",
|
Ios = "IOS",
|
||||||
}
|
}
|
||||||
|
|
||||||
export type EnumFilterBool = {
|
|
||||||
equals?: InputMaybe<Scalars["String"]["input"]>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type EnumFilterString = {
|
|
||||||
equals?: InputMaybe<Scalars["String"]["input"]>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type FilterInput = {
|
export type FilterInput = {
|
||||||
andFilters?: InputMaybe<AndFilter>;
|
andFilters?: InputMaybe<AndFilter>;
|
||||||
cueBallSpeed?: InputMaybe<CueBallSpeedInput>;
|
cueBallSpeed?: InputMaybe<CueBallSpeedInput>;
|
||||||
@ -173,11 +165,11 @@ export type IntPoint2D = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type IntendedPocketTypeInput = {
|
export type IntendedPocketTypeInput = {
|
||||||
value: EnumFilterString;
|
value: ValueFilterString;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type MakeInputGql = {
|
export type MakeInputGql = {
|
||||||
value: EnumFilterBool;
|
value: ValueFilterBool;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type MakePercentageIntervalGql = {
|
export type MakePercentageIntervalGql = {
|
||||||
@ -313,7 +305,7 @@ export enum ShotDirectionEnum {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export type ShotDirectionInput = {
|
export type ShotDirectionInput = {
|
||||||
value: EnumFilterString;
|
value: ValueFilterString;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type ShotFeaturesGql = {
|
export type ShotFeaturesGql = {
|
||||||
@ -409,6 +401,14 @@ export type UserStatisticsGql = {
|
|||||||
totalShotsMade: Scalars["Int"]["output"];
|
totalShotsMade: Scalars["Int"]["output"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type ValueFilterBool = {
|
||||||
|
equals?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ValueFilterString = {
|
||||||
|
equals?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
|
};
|
||||||
|
|
||||||
export type VideoFeedGql = {
|
export type VideoFeedGql = {
|
||||||
__typename?: "VideoFeedGQL";
|
__typename?: "VideoFeedGQL";
|
||||||
pageInfo: PageInfoGql;
|
pageInfo: PageInfoGql;
|
||||||
|
@ -95,22 +95,22 @@ input CueBallSpeedInput {
|
|||||||
}
|
}
|
||||||
|
|
||||||
input IntendedPocketTypeInput {
|
input IntendedPocketTypeInput {
|
||||||
value: EnumFilterString!
|
value: ValueFilterString!
|
||||||
}
|
}
|
||||||
|
|
||||||
input EnumFilterString {
|
input ValueFilterString {
|
||||||
equals: String = null
|
equals: String = null
|
||||||
}
|
}
|
||||||
|
|
||||||
input ShotDirectionInput {
|
input ShotDirectionInput {
|
||||||
value: EnumFilterString!
|
value: ValueFilterString!
|
||||||
}
|
}
|
||||||
|
|
||||||
input MakeInputGQL {
|
input MakeInputGQL {
|
||||||
value: EnumFilterBool!
|
value: ValueFilterBool!
|
||||||
}
|
}
|
||||||
|
|
||||||
input EnumFilterBool {
|
input ValueFilterBool {
|
||||||
equals: String = null
|
equals: String = null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user