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

41 lines
650 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
2022-09-20 08:26:12 +00:00
query ShoutsReactedByUserQuery($slug: String!, $limit: Int!, $offset: Int!) {
2023-11-28 13:18:25 +00:00
load_shouts_followed(slug: String!, limit: Int, offset: Int) {
2022-09-09 11:53:35 +00:00
title
subtitle
layout
slug
cover
2023-12-18 01:15:49 +00:00
# cover_caption
2023-12-09 18:35:08 +00:00
main_topic
2022-09-09 11:53:35 +00:00
topics {
2022-12-03 07:15:13 +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
2023-11-28 13:18:25 +00:00
pic
2022-09-09 11:53:35 +00:00
}
2023-11-28 13:18:25 +00:00
created_at
published_at
featured_at
2022-09-09 11:53:35 +00:00
stat {
viewed
2024-01-23 13:22:18 +00:00
2022-09-09 11:53:35 +00:00
rating
}
}
}
`