Files
FictionArchive/fictionarchive-web-astro/src/lib/graphql/queries/chapter.graphql

24 lines
360 B
GraphQL

query GetChapter($novelId: UnsignedInt!, $chapterOrder: UnsignedInt!) {
chapter(novelId: $novelId, chapterOrder: $chapterOrder) {
id
order
name
body
url
revision
createdTime
lastUpdatedTime
images {
id
newPath
}
novelId
novelName
totalChapters
prevChapterOrder
nextChapterOrder
}
}