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