From 4b8f1798ff3d1dcbdd53b4cad46ab4f70b95248b Mon Sep 17 00:00:00 2001 From: tonyrewin Date: Tue, 15 Nov 2022 13:17:57 +0300 Subject: [PATCH] fixes --- schema.graphql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/schema.graphql b/schema.graphql index 4156f160..38708d5b 100644 --- a/schema.graphql +++ b/schema.graphql @@ -239,7 +239,7 @@ input ReactionBy { type Query { # inbox loadChats(offset: Int, amount: Int): Result! # your chats - loadMessagesBy(by: By & MessagesBy!, amount: Int, offset: Int): Result! + loadMessagesBy(by: MessagesBy!, amount: Int, offset: Int): Result! searchUsers(query: String!, amount: Int, offset: Int): Result! # auth @@ -248,9 +248,9 @@ type Query { signOut: AuthResult! # zine - loadAuthorsBy(by: By & AuthorsBy, amount: Int, offset: Int): [Author]! - loadShoutsBy(by: By & ShoutsBy, amount: Int, offset: Int): [Shout]! - loadReactionsBy(by: By & ReactionBy!, amount: Int, limit: Int): [Reaction]! + loadAuthorsBy(by: AuthorsBy, amount: Int, offset: Int): [Author]! + loadShoutsBy(by: ShoutsBy, amount: Int, offset: Int): [Shout]! + loadReactionsBy(by: ReactionBy!, amount: Int, limit: Int): [Reaction]! userFollowers(slug: String!): [Author]! userFollowedAuthors(slug: String!): [Author]! userFollowedTopics(slug: String!): [Topic]!