2023-11-13 14:43:08 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
|
|
|
query MySubscriptionsQuery {
|
2023-11-28 13:18:25 +00:00
|
|
|
get_my_followed {
|
2023-11-13 14:43:08 +00:00
|
|
|
topics {
|
|
|
|
id
|
|
|
|
title
|
|
|
|
body
|
|
|
|
slug
|
|
|
|
}
|
|
|
|
authors {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
2023-11-28 13:18:25 +00:00
|
|
|
pic
|
|
|
|
created_at
|
|
|
|
}
|
|
|
|
communitites {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
pic
|
|
|
|
created_at
|
2023-11-13 14:43:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|