INPUT_OBJECT
UUIDListFilter
A filter to be used against UUID List fields. All fields are combined with a logical ‘and.’
link GraphQL Schema definition
- input UUIDListFilter {
- # Is null (if `true` is specified) or is not null (if `false` is specified).
- Boolean :
- # Equal to the specified value.
- UUID] : [
- # Not equal to the specified value.
- UUID] : [
- # Not equal to the specified value, treating null like an ordinary value.
- UUID] : [
- # Equal to the specified value, treating null like an ordinary value.
- UUID] : [
- # Less than the specified value.
- UUID] : [
- # Less than or equal to the specified value.
- UUID] : [
- # Greater than the specified value.
- UUID] : [
- # Greater than or equal to the specified value.
- UUID] : [
- # Contains the specified list of values.
- UUID] : [
- # Contained by the specified list of values.
- UUID] : [
- # Overlaps the specified list of values.
- UUID] : [
- # Any array item is equal to the specified value.
- UUID :
- # Any array item is not equal to the specified value.
- UUID :
- # Any array item is less than the specified value.
- UUID :
- # Any array item is less than or equal to the specified value.
- UUID :
- # Any array item is greater than the specified value.
- UUID :
- # Any array item is greater than or equal to the specified value.
- UUID :
- }