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.

22 lines
415 B

  1. # A Chapter is the main content body of a story.
  2. type Chapter {
  3. # The chapter's ID
  4. id: String!
  5. # The chapter's title
  6. title: String!
  7. # The chapter's author
  8. author: String!
  9. # The chapter's source
  10. source: String!
  11. # When the chapter was posted initialy
  12. createdDate: String!
  13. # The in-universe date and time of the chapter
  14. fictionalDate: String!
  15. # The date of edit.
  16. editedDate: String!
  17. }