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

26 lines
312 B
TypeScript

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
}
}
}
`