IntWhere
A comparison predicate for filtering on numeric fields.
At most one field may be specified.
input IntWhere {
equals: Int
notEquals: Int
in: [Int!]
notIn: [Int!]
lessThan: Int
lessThanOrEqual: Int
greaterThan: Int
greaterThanOrEqual: Int
}
Fields
IntWhere.equals
● Int
scalar common
The field being compared is equal to the given value.
IntWhere.notEquals
● Int
scalar common
The field being compared is not equal to the given value.
IntWhere.in
● [Int!]
list scalar common
The field being compared is equal to one of the given values..
IntWhere.notIn
● [Int!]
list scalar common
The field being compared is not equal to any of the given values.
IntWhere.lessThan
● Int
scalar common
The field being compared is less than the given value.
IntWhere.lessThanOrEqual
● Int
scalar common
The field being compared is less than or equal to the given value.
IntWhere.greaterThan
● Int
scalar common
The field being compared is greater than the given value.
IntWhere.greaterThanOrEqual
● Int
scalar common
The field being compared is greater than or equal to the given value.
Member of
ObjectTypesWhere
input ● RelationTypesWhere
input