webapp/src/graphql/query/topics-all.ts
2023-05-10 22:20:53 +02:00

21 lines
265 B
TypeScript

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