INPUT_OBJECT

MattertagPatch

link GraphQL Schema definition

  • input MattertagPatch {
  • # The ID of the floor the Mattertag is on
  • floorId: ID
  • # If this is set to false this Mattertag should not be shown
  • # by players. See Model.mattertags(enabled)
  • enabled: Boolean
  • # An RGB hex string representing the highlight color for the Mattertag.
  • color: String
  • # A short label for the Mattertag, 60 character limit.
  • label: String
  • # A longer description of the Mattertag, 1,000 character limit.
  • description: String
  • # The position of the Mattertag icon.
  • position: IPoint3D
  • # Whether or not to show a line from the floor, wall or ceiling
  • # to the Mattertag icon.
  • # Default: true if stemDirection is specified, false otherwise.
  • stemEnabled: Boolean
  • # The direction of the line from the Mattertag icon to the floor, wall
  • # or ceiling.
  • stemDirection: IPoint3D
  • }