""" A Comment represents a comment to a story chapter. """ type Comment { "A unique ID of the change." id: String! "subject" subject: String! "The comment's author." author: String! "The displayed name of the character. This may be the same as character.name, but it does not need to be." characterName: String! "The character associated with the comment." character: Character "The fictional (IC) date of the comment." fictionalDate: Date "The date of creation." createdDate: Date! "The date of the last edit." editedDate: Date! "The markdown source of the comment." source: String! }