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