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

20 lines
262 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
2022-10-01 08:57:34 +00:00
query AuthorsAllQuery {
authorsAll {
2022-12-17 03:27:00 +00:00
id
2022-09-09 11:53:35 +00:00
slug
name
bio
userpic
2023-10-05 04:24:01 +00:00
createdAt
stat {
2022-11-19 05:00:54 +00:00
shouts
followers
comments: commented
2022-09-09 11:53:35 +00:00
}
}
}
`