14 lines
307 B
GraphQL
14 lines
307 B
GraphQL
#import "../fragments/chapterParts.gql"
|
|
#import "../fragments/contentBlockInterfaceParts.gql"
|
|
#import "../fragments/contentBlockParts.gql"
|
|
|
|
query ChapterQuery($id: ID!) {
|
|
chapter(id: $id) {
|
|
...ChapterParts
|
|
contentBlocks {
|
|
...ContentBlockParts
|
|
...ContentBlockInterfaceParts
|
|
}
|
|
}
|
|
}
|