webapp/src/graphql/subs/new-reaction.ts
2023-02-23 17:07:25 +03:00

27 lines
325 B
TypeScript

import { gql } from '@urql/core'
export default gql`
subscription {
newReactions {
id
body
kind
range
createdAt
replyTo
stat {
rating
}
shout {
id
slug
}
createdBy {
name
slug
userpic
}
}
}
`