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

44 lines
595 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 {
loadDrafts {
2023-04-20 13:58:56 +00:00
id
title
subtitle
slug
layout
cover
# community
mainTopic
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
userpic
2023-10-05 04:24:01 +00:00
createdAt
2023-04-20 13:58:56 +00:00
}
createdAt
publishedAt
2023-05-05 20:05:50 +00:00
stat {
viewed
reacted
rating
commented
}
2023-04-20 13:58:56 +00:00
}
}
`