merged-fix-5

This commit is contained in:
Untone 2023-10-11 12:26:08 +03:00
parent 62020bd668
commit 2fafe8b618

View File

@ -131,15 +131,6 @@ enum FollowingEntity {
################################### Mutation ################################### Mutation
type 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 # auth
getSession: AuthResult! getSession: AuthResult!