webapp/src/graphql/query/topic-by-slug.ts
2022-11-19 20:16:52 +03:00

21 lines
306 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query TopicBySlugQuery($slug: String!) {
getTopic(slug: $slug) {
title
body
slug
pic
# community
stat {
_id: shouts
shouts
authors
# viewed
followers
}
}
}
`