BooleanFilter
BooleanFilter
A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’
| Field | Type | Description | |
|---|---|---|---|
| isNull | Boolean | Is null (if `true` is specified) or is not null (if `false` is specified). | |
| equalTo | Boolean | Equal to the specified value. | |
| notEqualTo | Boolean | Not equal to the specified value. | |
| distinctFrom | Boolean | Not equal to the specified value, treating null like an ordinary value. | |
| notDistinctFrom | Boolean | Equal 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. | |
| lessThan | Boolean | Less than the specified value. | |
| lessThanOrEqualTo | Boolean | Less than or equal to the specified value. | |
| greaterThan | Boolean | Greater than the specified value. | |
| greaterThanOrEqualTo | Boolean | Greater than or equal to the specified value. | |