NullableIntFilterInput
Filter which can be used to filter for Nodes with a specific Int field
input NullableIntFilterInput {
eq: Int
gt: Int
gte: Int
in: [Int!]
isNull: Boolean
lt: Int
lte: Int
}
Fields
NullableIntFilterInput.eq
● Int
scalar
Matches values which are equal to the provided value
NullableIntFilterInput.gt
● Int
scalar
Matches values which are greater than the provided value
NullableIntFilterInput.gte
● Int
scalar
Matches values which are greater than or equal to the provided value
NullableIntFilterInput.in
● [Int!]
list scalar
Matches values which are equal to any of the provided values
NullableIntFilterInput.isNull
● Boolean
scalar
If true, matches only null values, if false, matches only non-null values
NullableIntFilterInput.lt
● Int
scalar
Matches values which are lesser than the provided value
NullableIntFilterInput.lte
● Int
scalar
Matches values which are lesser than or equal to the provided value
Member of
ArtefactFilterInput
input