JSONFilter
JSONFilter
A filter to be used against JSON 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 | JSON | Equal to the specified value. | |
| notEqualTo | JSON | Not equal to the specified value. | |
| distinctFrom | JSON | Not equal to the specified value, treating null like an ordinary value. | |
| notDistinctFrom | JSON | Equal to the specified value, treating null like an ordinary value. | |
| in | [JSON!] | Included in the specified list. | |
| notIn | [JSON!] | Not included in the specified list. | |
| lessThan | JSON | Less than the specified value. | |
| lessThanOrEqualTo | JSON | Less than or equal to the specified value. | |
| greaterThan | JSON | Greater than the specified value. | |
| greaterThanOrEqualTo | JSON | Greater than or equal to the specified value. | |
| contains | JSON | Contains the specified JSON. | |
| containedBy | JSON | Contained by the specified JSON. | |