GraphQL API and utilities for the rpdata project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
629 B

  1. """
  2. A Comment represents a comment to a story chapter.
  3. """
  4. type Comment {
  5. "A unique ID of the change."
  6. id: String!
  7. "subject"
  8. subject: String!
  9. "The comment's author."
  10. author: String!
  11. "The displayed name of the character. This may be the same as character.name, but it does not need to be."
  12. characterName: String!
  13. "The character associated with the comment."
  14. character: Character
  15. "The fictional (IC) date of the comment."
  16. fictionalDate: Date
  17. "The date of creation."
  18. createdDate: Date!
  19. "The date of the last edit."
  20. editedDate: Date!
  21. "The markdown source of the comment."
  22. source: String!
  23. }