Studio Service

BigFloatFilter

BigFloatFilter

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

FieldTypeDescription
isNullBooleanIs null (if `true` is specified) or is not null (if `false` is specified).
equalToBigFloatEqual to the specified value.
notEqualToBigFloatNot equal to the specified value.
distinctFromBigFloatNot equal to the specified value, treating null like an ordinary value.
notDistinctFromBigFloatEqual to the specified value, treating null like an ordinary value.
in[BigFloat!]Included in the specified list.
notIn[BigFloat!]Not included in the specified list.
lessThanBigFloatLess than the specified value.
lessThanOrEqualToBigFloatLess than or equal to the specified value.
greaterThanBigFloatGreater than the specified value.
greaterThanOrEqualToBigFloatGreater than or equal to the specified value.