Fix schema definition syntax

This commit is contained in:
Ramon Wenger 2021-04-15 18:53:09 +02:00
parent 1c91ac93a7
commit 96528e8926
1 changed files with 3 additions and 3 deletions

View File

@ -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!