webapp/src/graphql/query/topics-by-community.ts
2022-11-21 08:55:22 +03:00

20 lines
319 B
TypeScript

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