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

44 lines
615 B
TypeScript
Raw Normal View History

2022-11-18 02:23:04 +00:00
import { gql } from '@urql/core'
export default gql`
query LoadShoutQuery($slug: String!) {
loadShout(slug: $slug) {
id
2022-11-18 02:23:04 +00:00
title
subtitle
slug
layout
cover
body
2022-11-27 11:00:44 +00:00
media
2022-11-18 02:23:04 +00:00
# community
mainTopic
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
userpic
}
createdAt
publishedAt
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
}
}
}
`