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