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