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