webapp/src/graphql/query/core/topics-all.ts
2024-03-06 13:57:39 +03:00

22 lines
287 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
comments
# viewed
}
}
}
`