webapp/src/graphql/query/core/topics-all.ts
2023-11-28 16:18:25 +03:00

21 lines
270 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query TopicsAllQuery {
get_topics_all {
id
title
body
slug
pic
# community
stat {
shouts
authors
followers
# viewed
}
}
}
`