Studio Service

BooleanFilter

BooleanFilter

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

FieldTypeDescription
isNullBooleanIs null (if `true` is specified) or is not null (if `false` is specified).
equalToBooleanEqual to the specified value.
notEqualToBooleanNot equal to the specified value.
distinctFromBooleanNot equal to the specified value, treating null like an ordinary value.
notDistinctFromBooleanEqual to the specified value, treating null like an ordinary value.
in[Boolean!]Included in the specified list.
notIn[Boolean!]Not included in the specified list.
lessThanBooleanLess than the specified value.
lessThanOrEqualToBooleanLess than or equal to the specified value.
greaterThanBooleanGreater than the specified value.
greaterThanOrEqualToBooleanGreater than or equal to the specified value.