webapp/src/graphql/mutation/create-chat-message.ts
Tony 0b70289195
Prepare inbox (#65)
Chat client - MVP
2022-12-17 06:27:00 +03:00

18 lines
332 B
TypeScript

import { gql } from '@urql/core'
export default gql`
mutation createMessage($chat: String!, $body: String!, $replyTo: Int) {
createMessage(chat: $chat, body: $body, replyTo: $replyTo) {
error
message {
id
body
author
createdAt
replyTo
updatedAt
}
}
}
`