A point in the model for users to comment and attach other media.
- type Note implements Annotation, LayeredElement {
- # The note anchor's position.
- : Point
- # An RGB hex string representing the highlight color for the note.
- : String
- # Comments made on this note, ordered by created date.
- #
- # Arguments
- # offset: The page offset. This should be undefined for the
- # first page.
- # pageSize: The number of comments to return per page.
- # sortBy: How to sort the list of comments.
- (: String, : Int, : CommentSort): CommentResultList
- : DateTime!
- # The user who created the note.
- : UserMetadata!
- # The position of the icon marking the note.
- : Point
- : Boolean!
- : DateTime
- # The floor this note is on.
- : ModelFloor
- : ID!
- : String
- : DateTime
- : ModelLayer
- # The model this note is associated with.
- : Model
- : DateTime!
- # The resolution status of the note. Resolved notes are typically hidden.
- : ResolutionStatus!
- # The room the note is located in.
- : ModelRoom
- # Whether or not to show a stem or line from the anchor
- # to the note icon.
- : Boolean
- # The length of the note stem.
- : Float
- # The normalized unit vector of the stem's direction from the anchor to the note's
- # icon.
- : Point
- : Int!
- }