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

46 lines
654 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) {
2023-11-28 13:18:25 +00:00
load_shouts_by(options: $options) {
id
2022-09-09 11:53:35 +00:00
title
lead
description
2022-09-09 11:53:35 +00:00
subtitle
slug
layout
cover
lead
2023-12-09 18:35:08 +00:00
main_topic
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
2023-11-28 13:18:25 +00:00
pic
created_at
bio
2022-09-09 11:53:35 +00:00
}
2023-11-28 13:18:25 +00:00
created_at
published_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
2023-04-01 04:20:14 +00:00
commented
2022-09-09 11:53:35 +00:00
}
}
}
`