webapp/src/graphql/query/core/article-load.ts

57 lines
847 B
TypeScript
Raw Normal View History

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) {
id
2022-11-18 02:23:04 +00:00
title
lead
description
visibility
2022-11-18 02:23:04 +00:00
subtitle
slug
layout
cover
2023-12-08 11:49:50 +00:00
cover_caption
2022-11-18 02:23:04 +00:00
body
2022-11-27 11:00:44 +00:00
media
2023-11-30 08:07:31 +00:00
updated_by {
id
name
slug
pic
created_at
}
2022-11-18 02:23:04 +00:00
# community
2023-12-09 18:35:08 +00:00
main_topic
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 {
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-30 08:07:31 +00:00
updated_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
}
}
}
`