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