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