webapp/src/graphql/query/core/articles-load-feed.ts

36 lines
518 B
TypeScript
Raw Normal View History

2023-02-20 12:59:16 +00:00
import { gql } from '@urql/core'
export default gql`
query MyFeedQuery($options: LoadShoutsOptions) {
2023-11-28 13:18:25 +00:00
load_shouts_feed(options: $options) {
2023-02-20 12:59:16 +00:00
id
title
subtitle
slug
layout
cover
# community
topics {
id
2023-02-20 12:59:16 +00:00
title
body
slug
}
authors {
id
name
slug
2023-11-28 13:18:25 +00:00
pic
created_at
2023-02-20 12:59:16 +00:00
}
2023-11-28 13:18:25 +00:00
created_at
published_at
2023-02-20 12:59:16 +00:00
stat {
viewed
reacted
rating
}
}
}
`