IntFilter
IntFilter
A filter to be used against Int 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 | Int | Equal to the specified value. | |
| notEqualTo | Int | Not equal to the specified value. | |
| distinctFrom | Int | Not equal to the specified value, treating null like an ordinary value. | |
| notDistinctFrom | Int | Equal 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. | |
| lessThan | Int | Less than the specified value. | |
| lessThanOrEqualTo | Int | Less than or equal to the specified value. | |
| greaterThan | Int | Greater than the specified value. | |
| greaterThanOrEqualTo | Int | Greater than or equal to the specified value. | |