From 2fafe8b618dec6a51b6215b475e7551b27010d8a Mon Sep 17 00:00:00 2001 From: Untone Date: Wed, 11 Oct 2023 12:26:08 +0300 Subject: [PATCH] merged-fix-5 --- schemas/core.graphql | 9 --------- 1 file changed, 9 deletions(-) diff --git a/schemas/core.graphql b/schemas/core.graphql index 3d884956..dd9f998b 100644 --- a/schemas/core.graphql +++ b/schemas/core.graphql @@ -131,15 +131,6 @@ enum FollowingEntity { ################################### Mutation type Mutation { - # inbox - createChat(title: String, members: [Int]!): Result! - updateChat(chat: ChatInput!): Result! - deleteChat(chatId: String!): Result! - - createMessage(chat: String!, body: String!, replyTo: Int): Result! - updateMessage(chatId: String!, id: Int!, body: String!): Result! - deleteMessage(chatId: String!, id: Int!): Result! - markAsRead(chatId: String!, ids: [Int]!): Result! # auth getSession: AuthResult!