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