2023-02-20 12:59:16 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
|
|
|
query MyFeedQuery($options: LoadShoutsOptions) {
|
|
|
|
myFeed(options: $options) {
|
|
|
|
id
|
|
|
|
title
|
|
|
|
subtitle
|
|
|
|
slug
|
|
|
|
layout
|
|
|
|
cover
|
|
|
|
# community
|
|
|
|
mainTopic
|
|
|
|
topics {
|
2023-07-07 16:53:01 +00:00
|
|
|
id
|
2023-02-20 12:59:16 +00:00
|
|
|
title
|
|
|
|
body
|
|
|
|
slug
|
|
|
|
}
|
|
|
|
authors {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
userpic
|
|
|
|
}
|
|
|
|
createdAt
|
|
|
|
publishedAt
|
|
|
|
stat {
|
|
|
|
viewed
|
|
|
|
reacted
|
|
|
|
rating
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|