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

44 lines
588 B
TypeScript
Raw Normal View History

2023-04-20 13:58:56 +00:00
import { gql } from '@urql/core'
export default gql`
2023-05-05 20:05:50 +00:00
query LoadDraftsQuery {
2023-11-28 13:18:25 +00:00
load_shouts_drafts {
2023-04-20 13:58:56 +00:00
id
title
subtitle
slug
layout
cover
# community
media
2023-12-09 18:35:08 +00:00
main_topic
2023-04-20 13:58:56 +00:00
topics {
2023-05-05 20:05:50 +00:00
id
2023-04-20 13:58:56 +00:00
title
body
slug
stat {
shouts
authors
followers
}
}
authors {
id
name
slug
2023-11-28 13:18:25 +00:00
pic
created_at
2023-04-20 13:58:56 +00:00
}
2023-11-28 13:18:25 +00:00
created_at
published_at
2023-05-05 20:05:50 +00:00
stat {
viewed
2024-01-23 13:22:18 +00:00
2023-05-05 20:05:50 +00:00
rating
commented
}
2023-04-20 13:58:56 +00:00
}
}
`