INPUT_OBJECT

ImageCondition

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

link GraphQL Schema definition

  • input ImageCondition {
  • # 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 `approved` field.
  • approved: Boolean
  • # Checks for equality with the object’s `uploaded` field.
  • uploaded: Boolean
  • # Checks for equality with the object’s `annotated` field.
  • annotated: Boolean
  • # Checks for equality with the object’s `type` field.
  • type: ImageType
  • # 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 `attributes` field.
  • attributes: JSON
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: Datetime
  • # Checks for equality with the object’s `capturedBy` field.
  • capturedBy: UUID
  • # Checks for equality with the object’s `deletedAt` field.
  • deletedAt: Datetime
  • }