From f37c1f4839abbfb5483171f78cb2eda4d349e9a4 Mon Sep 17 00:00:00 2001 From: Untone Date: Sun, 8 Aug 2021 13:33:33 +0300 Subject: [PATCH] shout schema fix --- schema.graphql | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/schema.graphql b/schema.graphql index 1bf3f8cd..fcab3053 100644 --- a/schema.graphql +++ b/schema.graphql @@ -129,7 +129,6 @@ type Message { # is publication type Shout { - id: Int! org: String! slug: String! author: Int! @@ -140,11 +139,11 @@ type Shout { deletedBy: Int rating: Int published: DateTime # if there is no published field - it is not published - replyTo: Int # another shout + replyTo: String # another shout tags: [String] # actual values topics: [String] # topic-slugs title: String - versionOf: Int + versionOf: String visibleForRoles: [String] # role ids are strings visibleForUsers: [Int] }