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