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