INPUT_OBJECT

UUIDFilter

A filter to be used against UUID fields. All fields are combined with a logical ‘and.’

link GraphQL Schema definition

  • input UUIDFilter {
  • # Is null (if `true` is specified) or is not null (if `false` is specified).
  • isNull: Boolean
  • # Equal to the specified value.
  • equalTo: UUID
  • # Not equal to the specified value.
  • notEqualTo: UUID
  • # Not equal to the specified value, treating null like an ordinary value.
  • distinctFrom: UUID
  • # Equal to the specified value, treating null like an ordinary value.
  • notDistinctFrom: UUID
  • # Included in the specified list.
  • in: [UUID!]
  • # Not included in the specified list.
  • notIn: [UUID!]
  • # Less than the specified value.
  • lessThan: UUID
  • # Less than or equal to the specified value.
  • lessThanOrEqualTo: UUID
  • # Greater than the specified value.
  • greaterThan: UUID
  • # Greater than or equal to the specified value.
  • greaterThanOrEqualTo: UUID
  • }