webapp/src/graphql/mutation/create-chat-message.ts

18 lines
332 B
TypeScript
Raw Normal View History

2022-11-23 04:12:11 +00:00
import { gql } from '@urql/core'
export default gql`
2022-12-17 03:27:00 +00:00
mutation createMessage($chat: String!, $body: String!, $replyTo: Int) {
createMessage(chat: $chat, body: $body, replyTo: $replyTo) {
2022-11-23 04:12:11 +00:00
error
2022-12-17 03:27:00 +00:00
message {
2022-11-23 04:12:11 +00:00
id
2022-12-17 03:27:00 +00:00
body
author
createdAt
replyTo
updatedAt
2022-11-23 04:12:11 +00:00
}
}
}
`