From 2f85df3c012309e961c0a7e661dfdde07f6f3148 Mon Sep 17 00:00:00 2001 From: Untone Date: Tue, 27 Jul 2021 09:50:52 +0300 Subject: [PATCH] topic schema fix --- schema.graphql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schema.graphql b/schema.graphql index d34a3aee..3aaba6dc 100644 --- a/schema.graphql +++ b/schema.graphql @@ -165,11 +165,11 @@ type Shout { } type Topic { - slug: String + slug: String! # ID + createdBy: Int! # User original: String parents: [String] # NOTE: topic can have parent topics children: [String] # and children - createdBy: User! createdAt: DateTime! }