OBJECT

ImageAnnotation

link GraphQL Schema definition

  • type ImageAnnotation implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • nodeId: ID!
  • id: UUID!
  • type: GeometryType
  • detectionItemId: UUID!
  • x: BigFloat!
  • y: BigFloat!
  • width: BigFloat!
  • height: BigFloat!
  • label: String
  • imageId: UUID!
  • autoGenerated: Boolean
  • createdAt: Datetime
  • # Reads a single `DetectionItem` that is related to this `ImageAnnotation`.
  • detectionItemByDetectionItemId: DetectionItem
  • # Reads a single `Image` that is related to this `ImageAnnotation`.
  • imageByImageId: Image
  • }