webapp/src/graphql/query/core/my-followed.ts

29 lines
382 B
TypeScript
Raw Normal View History

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
}
}
}
`