From 96528e8926c54569765d2187a8ab4965606683bc Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Thu, 15 Apr 2021 18:53:09 +0200 Subject: [PATCH] Fix schema definition syntax --- schema.graphql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/schema.graphql b/schema.graphql index cc7f4c94..bff17726 100644 --- a/schema.graphql +++ b/schema.graphql @@ -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!