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

22 lines
287 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
query TopicsAllQuery {
2023-11-28 13:18:25 +00:00
get_topics_all {
2023-05-10 20:20:53 +00:00
id
2022-09-09 11:53:35 +00:00
title
body
slug
pic
# community
stat {
shouts
authors
followers
2024-03-06 10:57:39 +00:00
comments
2022-11-21 08:38:34 +00:00
# viewed
2022-09-09 11:53:35 +00:00
}
}
}
`