INPUT_OBJECT

DetectionItemCondition

A condition to be used against DetectionItem object types. All fields are tested for equality and combined with a logical ‘and.’

link GraphQL Schema definition

  • input DetectionItemCondition {
  • # Checks for equality with the object’s `id` field.
  • id: UUID
  • # Checks for equality with the object’s `label` field.
  • label: String
  • # Checks for equality with the object’s `organizationId` field.
  • organizationId: UUID
  • # Checks for equality with the object’s `siteId` field.
  • siteId: String
  • # Checks for equality with the object’s `customerId` field.
  • customerId: String
  • # Checks for equality with the object’s `globalId` field.
  • globalId: UUID
  • # Checks for equality with the object’s `type` field.
  • type: DetectionItemType
  • # Checks for equality with the object’s `attributes` field.
  • attributes: String
  • }