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

38 lines
578 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
2024-07-03 17:38:43 +00:00
query ShoutsFollowedQuery($limit: Int!, $offset: Int!) {
load_shouts_followed(limit: Int, offset: Int) {
2022-09-09 11:53:35 +00:00
title
subtitle
layout
slug
cover
2023-12-09 18:35:08 +00:00
main_topic
2022-09-09 11:53:35 +00:00
topics {
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
rating
}
}
}
`