INPUT_OBJECT

BooleanFilter

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

link GraphQL Schema definition

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