22 lines
292 B
TypeScript
22 lines
292 B
TypeScript
import { gql } from '@urql/core'
|
|
|
|
export default gql`
|
|
query TopicsAllQuery {
|
|
topicsAll {
|
|
_id: slug
|
|
title
|
|
body
|
|
slug
|
|
pic
|
|
# community
|
|
stat {
|
|
_id: shouts
|
|
shouts
|
|
authors
|
|
# viewed
|
|
followers
|
|
}
|
|
}
|
|
}
|
|
`
|