2022-11-13 19:35:57 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
|
|
|
query GetAuthorBySlugQuery($slug: String!) {
|
|
|
|
getAuthor(slug: $slug) {
|
2022-12-17 03:27:00 +00:00
|
|
|
id
|
2022-11-13 19:35:57 +00:00
|
|
|
slug
|
|
|
|
name
|
|
|
|
bio
|
2022-12-09 06:09:21 +00:00
|
|
|
about
|
2022-11-13 19:35:57 +00:00
|
|
|
userpic
|
2023-10-05 21:43:53 +00:00
|
|
|
# communities
|
2022-11-13 19:35:57 +00:00
|
|
|
links
|
|
|
|
createdAt
|
|
|
|
lastSeen
|
2023-10-05 21:43:53 +00:00
|
|
|
stat {
|
|
|
|
shouts
|
|
|
|
followers
|
|
|
|
followings
|
|
|
|
rating
|
|
|
|
commented
|
|
|
|
}
|
2022-11-13 19:35:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|