webapp/src/graphql/query/authors-all.ts
Tony 0b70289195
Prepare inbox (#65)
Chat client - MVP
2022-12-17 06:27:00 +03:00

20 lines
262 B
TypeScript

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