webapp/src/graphql/query/authors-all.ts

21 lines
280 B
TypeScript

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