Create video id filter gql
This commit is contained in:
parent
47df3adce5
commit
1665cf1eb9
@ -124,6 +124,7 @@ export type FilterInput = {
|
||||
orFilters?: InputMaybe<OrFilter>;
|
||||
shotDirection?: InputMaybe<ShotDirectionInput>;
|
||||
targetPocketDistance?: InputMaybe<TargetPocketDistanceInput>;
|
||||
videoId?: InputMaybe<IdInput>;
|
||||
};
|
||||
|
||||
export type GetUploadLinkReturn = {
|
||||
@ -138,6 +139,14 @@ export type Header = {
|
||||
value: Scalars["String"]["output"];
|
||||
};
|
||||
|
||||
export type IdInput = {
|
||||
value: InListFilter;
|
||||
};
|
||||
|
||||
export type InListFilter = {
|
||||
inList?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
||||
};
|
||||
|
||||
export type IntendedPocketTypeInput = {
|
||||
value: EnumFilter;
|
||||
};
|
||||
|
@ -163,6 +163,7 @@ input FilterInput {
|
||||
cueBallSpeed: CueBallSpeedInput = null
|
||||
intendedPocketType: IntendedPocketTypeInput = null
|
||||
shotDirection: ShotDirectionInput = null
|
||||
videoId: IdInput = null
|
||||
}
|
||||
|
||||
input AndFilter {
|
||||
@ -206,6 +207,14 @@ input ShotDirectionInput {
|
||||
value: EnumFilter!
|
||||
}
|
||||
|
||||
input IdInput {
|
||||
value: InListFilter!
|
||||
}
|
||||
|
||||
input InListFilter {
|
||||
inList: [ID!] = null
|
||||
}
|
||||
|
||||
type BucketSetGQL {
|
||||
keyName: String!
|
||||
feature: String!
|
||||
|
Loading…
Reference in New Issue
Block a user