webapp/src/graphql/query/core/my-followed.ts
Untone 9d93ee0a6c
Some checks failed
deploy / test (push) Failing after 59s
deploy / deploy (push) Has been skipped
minor fixes
2023-12-10 16:59:50 +03:00

29 lines
381 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query MySubscriptionsQuery {
get_my_followed {
topics {
id
title
body
slug
}
authors {
id
name
slug
pic
created_at
}
communities {
id
name
slug
pic
created_at
}
}
}
`