2022-09-09 11:53:35 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
2022-11-18 02:23:04 +00:00
|
|
|
query LoadShoutsQuery($options: LoadShoutsOptions) {
|
|
|
|
loadShouts(options: $options) {
|
2023-01-20 04:40:55 +00:00
|
|
|
id
|
2022-09-09 11:53:35 +00:00
|
|
|
title
|
2023-08-22 13:37:54 +00:00
|
|
|
lead
|
|
|
|
description
|
2022-09-09 11:53:35 +00:00
|
|
|
subtitle
|
|
|
|
slug
|
|
|
|
layout
|
|
|
|
cover
|
2023-08-17 16:00:53 +00:00
|
|
|
lead
|
2022-11-15 12:05:56 +00:00
|
|
|
# community
|
|
|
|
mainTopic
|
2022-09-09 11:53:35 +00:00
|
|
|
topics {
|
2023-05-05 20:05:50 +00:00
|
|
|
id
|
2022-09-09 11:53:35 +00:00
|
|
|
title
|
|
|
|
body
|
|
|
|
slug
|
|
|
|
stat {
|
|
|
|
shouts
|
|
|
|
authors
|
|
|
|
followers
|
|
|
|
}
|
|
|
|
}
|
|
|
|
authors {
|
2022-12-01 18:45:35 +00:00
|
|
|
id
|
2022-09-09 11:53:35 +00:00
|
|
|
name
|
|
|
|
slug
|
|
|
|
userpic
|
2023-10-04 19:04:09 +00:00
|
|
|
createdAt
|
|
|
|
bio
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
createdAt
|
2022-11-15 12:05:56 +00:00
|
|
|
publishedAt
|
2022-09-09 11:53:35 +00:00
|
|
|
stat {
|
|
|
|
viewed
|
|
|
|
reacted
|
|
|
|
rating
|
2023-04-01 04:20:14 +00:00
|
|
|
commented
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|