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