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