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