Support InListFilter GQL
This commit is contained in:
parent
1665cf1eb9
commit
be59f7a2c6
@ -124,7 +124,8 @@ export type FilterInput = {
|
|||||||
orFilters?: InputMaybe<OrFilter>;
|
orFilters?: InputMaybe<OrFilter>;
|
||||||
shotDirection?: InputMaybe<ShotDirectionInput>;
|
shotDirection?: InputMaybe<ShotDirectionInput>;
|
||||||
targetPocketDistance?: InputMaybe<TargetPocketDistanceInput>;
|
targetPocketDistance?: InputMaybe<TargetPocketDistanceInput>;
|
||||||
videoId?: InputMaybe<IdInput>;
|
userId?: InputMaybe<InListFilter>;
|
||||||
|
videoId?: InputMaybe<InListFilter>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type GetUploadLinkReturn = {
|
export type GetUploadLinkReturn = {
|
||||||
@ -139,12 +140,8 @@ export type Header = {
|
|||||||
value: Scalars["String"]["output"];
|
value: Scalars["String"]["output"];
|
||||||
};
|
};
|
||||||
|
|
||||||
export type IdInput = {
|
|
||||||
value: InListFilter;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type InListFilter = {
|
export type InListFilter = {
|
||||||
inList?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
inList?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type IntendedPocketTypeInput = {
|
export type IntendedPocketTypeInput = {
|
||||||
|
@ -163,7 +163,8 @@ input FilterInput {
|
|||||||
cueBallSpeed: CueBallSpeedInput = null
|
cueBallSpeed: CueBallSpeedInput = null
|
||||||
intendedPocketType: IntendedPocketTypeInput = null
|
intendedPocketType: IntendedPocketTypeInput = null
|
||||||
shotDirection: ShotDirectionInput = null
|
shotDirection: ShotDirectionInput = null
|
||||||
videoId: IdInput = null
|
videoId: InListFilter = null
|
||||||
|
userId: InListFilter = null
|
||||||
}
|
}
|
||||||
|
|
||||||
input AndFilter {
|
input AndFilter {
|
||||||
@ -207,12 +208,8 @@ input ShotDirectionInput {
|
|||||||
value: EnumFilter!
|
value: EnumFilter!
|
||||||
}
|
}
|
||||||
|
|
||||||
input IdInput {
|
|
||||||
value: InListFilter!
|
|
||||||
}
|
|
||||||
|
|
||||||
input InListFilter {
|
input InListFilter {
|
||||||
inList: [ID!] = null
|
inList: [Int!] = null
|
||||||
}
|
}
|
||||||
|
|
||||||
type BucketSetGQL {
|
type BucketSetGQL {
|
||||||
|
Loading…
Reference in New Issue
Block a user