INPUT_OBJECT

CameraStatusFilter

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

link GraphQL Schema definition

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