use redis for storing messages - next

This commit is contained in:
knst-kotov
2022-01-24 14:56:55 +03:00
parent c7639f38ae
commit ca9c3e0cee
3 changed files with 54 additions and 38 deletions

View File

@@ -101,7 +101,7 @@ type Mutation {
createChat(description: String): CreateChatResult!
createMessage(chatId: String!, body: String!, replyTo: Int): MessageResult!
updateMessage(chatId: String!, id: Int!, body: String!): MessageResult!
deleteMessage(chatId: String!, messageId: Int!): Result!
deleteMessage(chatId: String!, id: Int!): Result!
# auth
confirmEmail(token: String!): AuthResult!