ModelView

open_in_new

An alternative view of the same model.

GraphQL Schema definition

  • type ModelView {
  • # This id may be used in place of the model id to
  • # get the data associated with this view.
  • id: ID!
  • # When this view was created, some inherited
  • # data may be older than the view itself.
  • created: DateTime
  • # The last time the view metadata was edited. There
  • # may be data in the view that has been edited
  • # more recently.
  • modified: DateTime
  • # Identifier for the type of view this is.
  • type: ID!
  • # A user editable name for the layer.
  • name: String
  • # Metadata describing the type of layer
  • description: String
  • # Whether the view elements should be shown or not.
  • enabled: Boolean
  • # This view represented as a model.
  • model: Model!
  • }