webapp/src/graphql/query/topics-all.ts

20 lines
256 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
query TopicsAllQuery {
topicsAll {
title
body
slug
pic
# community
stat {
shouts
authors
followers
2022-11-21 08:38:34 +00:00
# viewed
2022-09-09 11:53:35 +00:00
}
}
}
`