Studio Service

BigIntFilter

BigIntFilter

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

FieldTypeDescription
isNullBooleanIs null (if `true` is specified) or is not null (if `false` is specified).
equalToBigIntEqual to the specified value.
notEqualToBigIntNot equal to the specified value.
distinctFromBigIntNot equal to the specified value, treating null like an ordinary value.
notDistinctFromBigIntEqual to the specified value, treating null like an ordinary value.
in[BigInt!]Included in the specified list.
notIn[BigInt!]Not included in the specified list.
lessThanBigIntLess than the specified value.
lessThanOrEqualToBigIntLess than or equal to the specified value.
greaterThanBigIntGreater than the specified value.
greaterThanOrEqualToBigIntGreater than or equal to the specified value.