webapp/src/graphql/query/topics-by-community.ts

21 lines
336 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
query TopicsByCommunityQuery($community: String!) {
topicsByCommunity(community: $community) {
title
body
slug
pic
# community
stat {
_id: shouts
shouts
authors
# viewed
followers
}
}
}
`