INPUT_OBJECT

DeviceModesFilter

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

link GraphQL Schema definition

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