INPUT_OBJECT
MattertagDetails
link GraphQL Schema definition
- input MattertagDetails {
- # The ID of the floor the Mattertag is on
- : ID!
- # If this is set to false this Mattertag should not be shown
- # by players. See Model.mattertags(enabled)
- : Boolean
- # An RGB hex string representing the highlight color for the Mattertag.
- : String
- # A short label for the Mattertag, 60 character limit.
- : String!
- # A longer description of the Mattertag, 1,000 character limit.
- : String
- # The position of the Mattertag icon.
- : 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.
- : Boolean
- # The direction of the line from the Mattertag icon to the floor, wall
- # or ceiling.
- : IPoint3D
- }