webapp/src/graphql/query/core/articles-load-unrated.ts

47 lines
706 B
TypeScript
Raw Normal View History

import { gql } from '@urql/core'
export default gql`
2023-12-19 09:34:24 +00:00
query LoadUnratedShoutsQuery($limit: Int, $offset: Int) {
load_shouts_unrated(limit: $limit, offset: $offset) {
id
title
2023-12-18 01:15:49 +00:00
# lead
description
subtitle
slug
layout
cover
2023-12-18 01:15:49 +00:00
cover_caption
# community
2023-12-18 01:15:49 +00:00
main_topic
topics {
id
title
body
slug
stat {
shouts
authors
followers
}
}
authors {
id
name
slug
2023-12-18 01:15:49 +00:00
pic
created_at
bio
}
2023-12-18 01:15:49 +00:00
created_at
published_at
stat {
viewed
2024-01-23 13:22:18 +00:00
rating
commented
}
}
}
`