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