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

16 lines
192 B
TypeScript

import { gql } from '@urql/core'
export default gql`
subscription {
newMessage {
id
chatId
author
body
replyTo
createdAt
updatedAt
}
}
`