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.
23 lines
415 B
23 lines
415 B
# A Chapter is the main content body of a story.
|
|
type Chapter {
|
|
# The chapter's ID
|
|
id: String!
|
|
|
|
# The chapter's title
|
|
title: String!
|
|
|
|
# The chapter's author
|
|
author: String!
|
|
|
|
# The chapter's source
|
|
source: String!
|
|
|
|
# When the chapter was posted initialy
|
|
createdDate: String!
|
|
|
|
# The in-universe date and time of the chapter
|
|
fictionalDate: String!
|
|
|
|
# The date of edit.
|
|
editedDate: String!
|
|
}
|