Add table size range filter

This commit is contained in:
Mike Kalange 2024-08-15 19:42:53 -07:00
parent f20ca53a2a
commit 09a3e0e294
2 changed files with 8 additions and 2 deletions

View File

@ -961,7 +961,7 @@ export type FilterInput =
orFilters?: never;
shotDirection?: never;
spinType?: never;
tableSize: Scalars["Float"]["input"];
tableSize: RangeFilter;
tags?: never;
targetPocketDistance?: never;
userId?: never;
@ -1326,9 +1326,12 @@ export type QueryWaitForArgs = {
};
export type RangeFilter = {
greaterThan?: InputMaybe<Scalars["Float"]["input"]>;
greaterThanEqualTo?: InputMaybe<Scalars["Float"]["input"]>;
greaterThanInclusive?: Scalars["Boolean"]["input"];
includeOnNone?: Scalars["Boolean"]["input"];
lessThan?: InputMaybe<Scalars["Float"]["input"]>;
lessThanInclusive?: Scalars["Boolean"]["input"];
};
export type SerializedShotPathsGql = {

View File

@ -96,7 +96,7 @@ input FilterInput @oneOf {
isLeftMiss: [Boolean!]
isRightMiss: [Boolean!]
isDirect: [Boolean!]
tableSize: Float
tableSize: RangeFilter
bankAngle: RangeFilter
bankDistance: RangeFilter
kickAngle: RangeFilter
@ -110,7 +110,10 @@ input FilterInput @oneOf {
input RangeFilter {
lessThan: Float = null
greaterThanEqualTo: Float = null
greaterThan: Float = null
includeOnNone: Boolean! = false
lessThanInclusive: Boolean! = false
greaterThanInclusive: Boolean! = true
}
enum PocketEnum {