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