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

20 lines
290 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query TopicsRandomQuery($amount: Int) {
get_topics_random(amount: $amount) {
id
title
body
slug
pic
# community
stat {
shouts
authors
followers
}
}
}
`