Add include_on_none in range filter

This commit is contained in:
Ivan Malison 2024-07-29 17:21:09 -06:00
parent e20b68799f
commit 64593f09b7
2 changed files with 2 additions and 0 deletions

View File

@ -1229,6 +1229,7 @@ export type QueryGetVideosArgs = {
export type RangeFilter = {
greaterThanEqualTo?: InputMaybe<Scalars["Float"]["input"]>;
includeOnNone?: Scalars["Boolean"]["input"];
lessThan?: InputMaybe<Scalars["Float"]["input"]>;
};

View File

@ -104,6 +104,7 @@ input FilterInput @oneOf {
input RangeFilter {
lessThan: Float = null
greaterThanEqualTo: Float = null
includeOnNone: Boolean! = false
}
enum PocketEnum {