Fix schema definition syntax
This commit is contained in:
parent
1c91ac93a7
commit
96528e8926
|
|
@ -211,7 +211,7 @@ interface ChapterInterface {
|
|||
contentBlocks(offset: Int, before: String, after: String, first: Int, last: Int, slug: String, title: String): ContentBlockNodeConnection
|
||||
}
|
||||
|
||||
type ChapterNode implements Node, ChapterInterface {
|
||||
type ChapterNode implements Node & ChapterInterface {
|
||||
title: String!
|
||||
slug: String!
|
||||
description: String!
|
||||
|
|
@ -626,7 +626,7 @@ interface ModuleInterface {
|
|||
pk: Int
|
||||
}
|
||||
|
||||
type ModuleNode implements Node, ModuleInterface {
|
||||
type ModuleNode implements Node & ModuleInterface {
|
||||
title: String!
|
||||
slug: String!
|
||||
metaTitle: String!
|
||||
|
|
@ -865,7 +865,7 @@ type SchoolClassNodeEdge {
|
|||
cursor: String!
|
||||
}
|
||||
|
||||
type SnapshotChapterNode implements Node, ChapterInterface {
|
||||
type SnapshotChapterNode implements Node & ChapterInterface {
|
||||
id: ID!
|
||||
chapter: ChapterNode!
|
||||
snapshot: SnapshotNode!
|
||||
|
|
|
|||
Loading…
Reference in New Issue