INPUT_OBJECT

ModelCondition

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

link GraphQL Schema definition

  • input ModelCondition {
  • # Checks for equality with the object’s `id` field.
  • id: UUID
  • # Checks for equality with the object’s `organizationId` field.
  • organizationId: UUID
  • # Checks for equality with the object’s `type` field.
  • type: ModelType
  • # Checks for equality with the object’s `status` field.
  • status: ModelStatus
  • # Checks for equality with the object’s `label` field.
  • label: String
  • # Checks for equality with the object’s `tags` field.
  • tags: [String]
  • # Checks for equality with the object’s `images` field.
  • images: [UUID]
  • # Checks for equality with the object’s `attributes` field.
  • attributes: JSON
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: Datetime
  • # Checks for equality with the object’s `adaptive` field.
  • adaptive: Boolean
  • # Checks for equality with the object’s `autoDeploy` field.
  • autoDeploy: Boolean
  • # Checks for equality with the object’s `excludeAutoLabeledImages` field.
  • excludeAutoLabeledImages: Boolean
  • }