Use list int directly for user id input
This commit is contained in:
parent
e1600751e0
commit
57c3ee0360
@ -137,8 +137,8 @@ export type FilterInput = {
|
||||
orFilters?: InputMaybe<OrFilter>;
|
||||
shotDirection?: InputMaybe<ShotDirectionInput>;
|
||||
targetPocketDistance?: InputMaybe<TargetPocketDistanceInput>;
|
||||
userId?: InputMaybe<InListFilter>;
|
||||
videoId?: InputMaybe<InListFilter>;
|
||||
userId?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
||||
videoId?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
||||
};
|
||||
|
||||
export type GetUploadLinkReturn = {
|
||||
@ -161,10 +161,6 @@ export type HomographyInfoGql = {
|
||||
sourcePoints: PocketPointsGql;
|
||||
};
|
||||
|
||||
export type InListFilter = {
|
||||
inList?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
||||
};
|
||||
|
||||
export type IntPoint2D = {
|
||||
__typename?: "IntPoint2D";
|
||||
x: Scalars["Int"]["output"];
|
||||
|
@ -57,8 +57,8 @@ input FilterInput {
|
||||
cueBallSpeed: CueBallSpeedInput = null
|
||||
intendedPocketType: IntendedPocketTypeInput = null
|
||||
shotDirection: ShotDirectionInput = null
|
||||
videoId: InListFilter = null
|
||||
userId: InListFilter = null
|
||||
videoId: [Int!] = null
|
||||
userId: [Int!] = null
|
||||
}
|
||||
|
||||
input AndFilter {
|
||||
@ -102,10 +102,6 @@ input ShotDirectionInput {
|
||||
value: EnumFilter!
|
||||
}
|
||||
|
||||
input InListFilter {
|
||||
inList: [Int!] = null
|
||||
}
|
||||
|
||||
type UserGQL {
|
||||
id: Int!
|
||||
firebaseUid: String!
|
||||
|
Loading…
Reference in New Issue
Block a user