2023-12-14 18:45:50 +00:00
|
|
|
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) {
|
2023-12-14 18:45:50 +00:00
|
|
|
id
|
|
|
|
title
|
2023-12-18 01:15:49 +00:00
|
|
|
# lead
|
2023-12-14 18:45:50 +00:00
|
|
|
description
|
|
|
|
subtitle
|
|
|
|
slug
|
|
|
|
layout
|
|
|
|
cover
|
2023-12-18 01:15:49 +00:00
|
|
|
cover_caption
|
2023-12-14 18:45:50 +00:00
|
|
|
# community
|
2023-12-18 01:15:49 +00:00
|
|
|
main_topic
|
2023-12-14 18:45:50 +00:00
|
|
|
topics {
|
|
|
|
id
|
|
|
|
title
|
|
|
|
body
|
|
|
|
slug
|
|
|
|
stat {
|
|
|
|
shouts
|
|
|
|
authors
|
|
|
|
followers
|
|
|
|
}
|
|
|
|
}
|
|
|
|
authors {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
2023-12-18 01:15:49 +00:00
|
|
|
pic
|
|
|
|
created_at
|
2023-12-14 18:45:50 +00:00
|
|
|
bio
|
|
|
|
}
|
2023-12-18 01:15:49 +00:00
|
|
|
created_at
|
|
|
|
published_at
|
2024-02-02 17:29:53 +00:00
|
|
|
featured_at
|
2023-12-14 18:45:50 +00:00
|
|
|
stat {
|
|
|
|
viewed
|
2024-08-07 10:39:39 +00:00
|
|
|
last_reacted_at
|
2023-12-14 18:45:50 +00:00
|
|
|
rating
|
|
|
|
commented
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|