2023-11-29 08:23:08 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
|
|
|
query MyFeedQuery($options: LoadShoutsOptions) {
|
|
|
|
load_shouts_search(options: $options) {
|
|
|
|
id
|
|
|
|
title
|
|
|
|
subtitle
|
|
|
|
slug
|
|
|
|
layout
|
|
|
|
cover
|
2023-12-09 18:35:08 +00:00
|
|
|
main_topic
|
2023-11-29 08:23:08 +00:00
|
|
|
topics {
|
|
|
|
id
|
|
|
|
title
|
|
|
|
body
|
|
|
|
slug
|
|
|
|
}
|
|
|
|
authors {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
pic
|
|
|
|
created_at
|
|
|
|
}
|
|
|
|
created_at
|
|
|
|
published_at
|
|
|
|
stat {
|
|
|
|
viewed
|
|
|
|
reacted
|
|
|
|
rating
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|