webapp/src/graphql/query/core/articles-load-random-top.ts
Untone 9a55056b9d
Some checks failed
deploy / test (push) Failing after 1m2s
deploy / deploy (push) Has been skipped
session-fx
2023-12-24 11:16:41 +03:00

46 lines
697 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query LoadRandomTopShoutsQuery($options: LoadShoutsOptions) {
load_shouts_random_top(options: $options) {
id
title
# lead
description
subtitle
slug
layout
cover
cover_caption
main_topic
topics {
id
title
body
slug
stat {
shouts
authors
followers
}
}
authors {
id
name
slug
pic
created_at
bio
}
created_at
published_at
stat {
viewed
reacted
rating
commented
}
}
}
`