webapp/src/graphql/query/author-by-slug.ts
Ilya Y f85a3e84fe
Feature/update topic badge (#250)
* update TopicBadge view
* Shouts and comments count in profile page
2023-10-06 00:43:53 +03:00

26 lines
378 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query GetAuthorBySlugQuery($slug: String!) {
getAuthor(slug: $slug) {
id
slug
name
bio
about
userpic
# communities
links
createdAt
lastSeen
stat {
shouts
followers
followings
rating
commented
}
}
}
`