NoteDetails

open_in_new

GraphQL Schema definition

  • input NoteDetails {
  • # The ID of the floor the note is on.
  • floorId: ID!
  • # The ID of the room the note is in.
  • roomId: ID
  • # If this is set to false this note should not be shown
  • # by players.
  • # Defaults to true.
  • enabled: Boolean
  • label: String
  • # The resolution status of the note. Resolved notes are typically hidden.
  • # Defaults to open.
  • resolution: ResolutionStatus
  • # An RGB hex string representing the highlight color for the note.
  • color: String
  • # The position of the note anchor.
  • anchorPosition: IPoint3D
  • # Whether or not to show a line from the note anchor to the
  • # note icon.
  • # Default: true if stemNormal is specified, false otherwise.
  • stemEnabled: Boolean
  • # The normalized unit vector of the line from the anchor
  • # to the note icon.
  • stemNormal: IPoint3D
  • # The length of the line from the anchor
  • # to the note icon.
  • stemLength: Float
  • # The root comment made on this note.
  • # Default: an empty comment if none is provided here.
  • comment: CommentDetails
  • }