StringListFilter
StringListFilter
A filter to be used against String List 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 | [String] | Equal to the specified value. | |
notEqualTo | [String] | Not equal to the specified value. | |
distinctFrom | [String] | Not equal to the specified value, treating null like an ordinary value. | |
notDistinctFrom | [String] | Equal to the specified value, treating null like an ordinary value. | |
lessThan | [String] | Less than the specified value. | |
lessThanOrEqualTo | [String] | Less than or equal to the specified value. | |
greaterThan | [String] | Greater than the specified value. | |
greaterThanOrEqualTo | [String] | Greater than or equal to the specified value. | |
contains | [String] | Contains the specified list of values. | |
containedBy | [String] | Contained by the specified list of values. | |
overlaps | [String] | Overlaps the specified list of values. | |
anyEqualTo | String | Any array item is equal to the specified value. |