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