Markdown text and/or attachments made on an annotation.

GraphQL Schema definition

  • type Comment {
  • id: ID!
  • created: DateTime!
  • modified: DateTime!
  • # The user who created the comment.
  • createdBy: UserMetadata!
  • # Whether or not the text of the comment has been edited.
  • edited: Boolean!
  • # The markdown text content of the comment.
  • text: String
  • }