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

26 lines
312 B
TypeScript
Raw Normal View History

2023-02-23 14:07:25 +00:00
import { gql } from '@urql/core'
export default gql`
subscription {
newShout {
id
slug
title
subtitle
body
topics {
# id
title
slug
}
authors {
id
name
slug
userpic
caption
}
}
}
`