create-msg-fix2

This commit is contained in:
2023-10-13 21:09:20 +03:00
parent 3959a36d8a
commit 32fc9646a3
2 changed files with 3 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ type Mutation {
updateChat(chat: ChatInput!): ChatResult!
deleteChat(chatId: String!): ChatResult!
createMessage(chat: String!, body: String!, replyTo: Int): ChatResult!
createMessage(chatId: String!, body: String!, replyTo: Int): ChatResult!
updateMessage(chatId: String!, id: Int!, body: String!): ChatResult!
deleteMessage(chatId: String!, id: Int!): ChatResult!
markAsRead(chatId: String!, ids: [Int]!): ChatResult!