webapp/src/graphql/query/authors-all.ts
kvakazyambra 11874c6c1d auth context
topic page fix, getAuthor, getTopic
newapi -> testapi
fixes
2022-11-14 01:09:20 +01:00

20 lines
256 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query AuthorsAllQuery {
authorsAll {
_id: slug
slug
name
bio
userpic
links
lastSeen
stat {
followers
followings
}
}
}
`