2022-11-13 19:35:57 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
2023-12-13 23:56:44 +00:00
|
|
|
query GetAuthorBy($slug: String, $author_id: Int) {
|
|
|
|
get_author(slug: $slug, author_id: $author_id) {
|
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
|
2023-11-28 13:18:25 +00:00
|
|
|
pic
|
2023-10-05 21:43:53 +00:00
|
|
|
# communities
|
2022-11-13 19:35:57 +00:00
|
|
|
links
|
2023-11-28 13:18:25 +00:00
|
|
|
created_at
|
|
|
|
last_seen
|
2023-10-05 21:43:53 +00:00
|
|
|
stat {
|
|
|
|
shouts
|
|
|
|
followers
|
|
|
|
followings
|
|
|
|
rating
|
|
|
|
commented
|
|
|
|
}
|
2022-11-13 19:35:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|