35 lines
502 B
TypeScript
35 lines
502 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
|
||
|
topics {
|
||
|
id
|
||
|
title
|
||
|
body
|
||
|
slug
|
||
|
}
|
||
|
authors {
|
||
|
id
|
||
|
name
|
||
|
slug
|
||
|
pic
|
||
|
created_at
|
||
|
}
|
||
|
created_at
|
||
|
published_at
|
||
|
stat {
|
||
|
viewed
|
||
|
reacted
|
||
|
rating
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
`
|