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