webapp/src/graphql/subs/new-reaction.ts

27 lines
325 B
TypeScript
Raw Normal View History

2023-02-23 14:07:25 +00:00
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
}
}
}
`