webapp/src/graphql/query/core/articles-load-search.ts
Untone 44af27d7a5
Some checks failed
deploy / test (push) Failing after 53s
deploy / deploy (push) Has been skipped
maintopic-fix
2023-12-09 21:35:08 +03:00

36 lines
519 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query MyFeedQuery($options: LoadShoutsOptions) {
load_shouts_search(options: $options) {
id
title
subtitle
slug
layout
cover
main_topic
topics {
id
title
body
slug
}
authors {
id
name
slug
pic
created_at
}
created_at
published_at
stat {
viewed
reacted
rating
}
}
}
`