webapp/src/graphql/query/articles-load-by.ts

42 lines
613 B
TypeScript
Raw Normal View History

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) {
id
2022-09-09 11:53:35 +00:00
title
subtitle
slug
layout
cover
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 {
id
2022-09-09 11:53:35 +00:00
name
slug
userpic
}
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
}
}
}
`