webapp/src/graphql/query/topics-random.ts
2022-11-21 08:55:22 +03:00

21 lines
281 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query TopicsRandomQuery {
topicsRandom {
_id: slug
title
body
slug
pic
# community
stat {
_id: shouts
shouts
authors
followers
}
}
}
`