Add aggregation filter attributes
This commit is contained in:
parent
4ced3d39df
commit
19628736c1
@ -132,6 +132,8 @@ export type FilterInput = {
|
|||||||
orFilters?: InputMaybe<OrFilter>;
|
orFilters?: InputMaybe<OrFilter>;
|
||||||
shotDirection?: InputMaybe<ShotDirectionInput>;
|
shotDirection?: InputMaybe<ShotDirectionInput>;
|
||||||
targetPocketDistance?: InputMaybe<TargetPocketDistanceInput>;
|
targetPocketDistance?: InputMaybe<TargetPocketDistanceInput>;
|
||||||
|
userId?: InputMaybe<InListFilter>;
|
||||||
|
videoId?: InputMaybe<InListFilter>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type GetUploadLinkReturn = {
|
export type GetUploadLinkReturn = {
|
||||||
@ -154,6 +156,10 @@ export type HomographyInfoGql = {
|
|||||||
sourcePoints: PocketPointsGql;
|
sourcePoints: PocketPointsGql;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type InListFilter = {
|
||||||
|
inList?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
||||||
|
};
|
||||||
|
|
||||||
export type IntPoint2D = {
|
export type IntPoint2D = {
|
||||||
__typename?: "IntPoint2D";
|
__typename?: "IntPoint2D";
|
||||||
x: Scalars["Int"]["output"];
|
x: Scalars["Int"]["output"];
|
||||||
|
@ -198,6 +198,8 @@ input FilterInput {
|
|||||||
cueBallSpeed: CueBallSpeedInput = null
|
cueBallSpeed: CueBallSpeedInput = null
|
||||||
intendedPocketType: IntendedPocketTypeInput = null
|
intendedPocketType: IntendedPocketTypeInput = null
|
||||||
shotDirection: ShotDirectionInput = null
|
shotDirection: ShotDirectionInput = null
|
||||||
|
videoId: InListFilter = null
|
||||||
|
userId: InListFilter = null
|
||||||
}
|
}
|
||||||
|
|
||||||
input AndFilter {
|
input AndFilter {
|
||||||
@ -241,6 +243,10 @@ input ShotDirectionInput {
|
|||||||
value: EnumFilter!
|
value: EnumFilter!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input InListFilter {
|
||||||
|
inList: [Int!] = null
|
||||||
|
}
|
||||||
|
|
||||||
type BucketSetGQL {
|
type BucketSetGQL {
|
||||||
keyName: String!
|
keyName: String!
|
||||||
feature: String!
|
feature: String!
|
||||||
|
Loading…
Reference in New Issue
Block a user