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