Annotation

open_in_new

Common interface for annotations or virtual overlays added to the model.

GraphQL Schema definition

  • interface Annotation {
  • id: ID!
  • created: DateTime!
  • modified: DateTime!
  • # Whether or not this annotation should
  • # be shown in public views.
  • enabled: Boolean!
  • # A label describing the annotation, intended to be displayed in public views.
  • label: String
  • }