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