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
|
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!
|
title: String!
|
||||||
slug: String!
|
slug: String!
|
||||||
description: String!
|
description: String!
|
||||||
|
|
@ -626,7 +626,7 @@ interface ModuleInterface {
|
||||||
pk: Int
|
pk: Int
|
||||||
}
|
}
|
||||||
|
|
||||||
type ModuleNode implements Node, ModuleInterface {
|
type ModuleNode implements Node & ModuleInterface {
|
||||||
title: String!
|
title: String!
|
||||||
slug: String!
|
slug: String!
|
||||||
metaTitle: String!
|
metaTitle: String!
|
||||||
|
|
@ -865,7 +865,7 @@ type SchoolClassNodeEdge {
|
||||||
cursor: String!
|
cursor: String!
|
||||||
}
|
}
|
||||||
|
|
||||||
type SnapshotChapterNode implements Node, ChapterInterface {
|
type SnapshotChapterNode implements Node & ChapterInterface {
|
||||||
id: ID!
|
id: ID!
|
||||||
chapter: ChapterNode!
|
chapter: ChapterNode!
|
||||||
snapshot: SnapshotNode!
|
snapshot: SnapshotNode!
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue