2022-11-18 02:23:04 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
2023-11-29 11:40:53 +00:00
|
|
|
query LoadShoutQuery($slug: String, $shout_id: Int) {
|
|
|
|
get_shout(slug: $slug, shout_id: $shout_id) {
|
2023-01-20 04:40:55 +00:00
|
|
|
id
|
2022-11-18 02:23:04 +00:00
|
|
|
title
|
2023-08-22 13:37:54 +00:00
|
|
|
lead
|
|
|
|
description
|
2023-08-04 15:59:36 +00:00
|
|
|
visibility
|
2022-11-18 02:23:04 +00:00
|
|
|
subtitle
|
|
|
|
slug
|
|
|
|
layout
|
|
|
|
cover
|
|
|
|
body
|
2022-11-27 11:00:44 +00:00
|
|
|
media
|
2022-11-18 02:23:04 +00:00
|
|
|
# community
|
2023-11-28 13:18:25 +00:00
|
|
|
# mainTopic
|
2022-11-18 02:23:04 +00:00
|
|
|
topics {
|
2023-05-04 12:16:39 +00:00
|
|
|
id
|
2022-11-18 02:23:04 +00:00
|
|
|
title
|
|
|
|
body
|
|
|
|
slug
|
|
|
|
stat {
|
|
|
|
shouts
|
|
|
|
authors
|
|
|
|
followers
|
|
|
|
}
|
|
|
|
}
|
|
|
|
authors {
|
2022-12-01 18:45:35 +00:00
|
|
|
id
|
2022-11-18 02:23:04 +00:00
|
|
|
name
|
|
|
|
slug
|
2023-11-28 13:18:25 +00:00
|
|
|
pic
|
|
|
|
created_at
|
2022-11-18 02:23:04 +00:00
|
|
|
}
|
2023-11-29 11:40:53 +00:00
|
|
|
created_at
|
2023-11-28 13:18:25 +00:00
|
|
|
published_at
|
2022-11-18 02:23:04 +00:00
|
|
|
stat {
|
2022-11-23 11:34:43 +00:00
|
|
|
viewed
|
2022-11-18 02:23:04 +00:00
|
|
|
reacted
|
|
|
|
rating
|
2023-03-09 14:08:43 +00:00
|
|
|
commented
|
2022-11-18 02:23:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|