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

43 lines
586 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-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
reacted
rating
commented
}
2023-04-20 13:58:56 +00:00
}
}
`