StringFilter
StringFilter
A filter to be used against String 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. | |
| in | [String!] | Included in the specified list. | |
| notIn | [String!] | Not included in the specified list. | |
| 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. | |
| includes | String | Contains the specified string (case-sensitive). | |
| includesInsensitive | String | Contains the specified string (case-insensitive). | |