Studio Service

IntFilter

IntFilter

A filter to be used against Int fields. All fields are combined with a logical ‘and.’

FieldTypeDescription
isNullBooleanIs null (if `true` is specified) or is not null (if `false` is specified).
equalToIntEqual to the specified value.
notEqualToIntNot equal to the specified value.
distinctFromIntNot equal to the specified value, treating null like an ordinary value.
notDistinctFromIntEqual to the specified value, treating null like an ordinary value.
in[Int!]Included in the specified list.
notIn[Int!]Not included in the specified list.
lessThanIntLess than the specified value.
lessThanOrEqualToIntLess than or equal to the specified value.
greaterThanIntGreater than the specified value.
greaterThanOrEqualToIntGreater than or equal to the specified value.