webapp/src/graphql/query/core/authors-all.ts
2023-12-10 01:15:02 +03:00

20 lines
324 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query AuthorsAllQuery($limit: Int, $offset: Int) {
load_authors_all(limit: $limit, offset: $offset) {
id
slug
name
bio
pic
created_at
stat {
shouts
followers
comments: commented
}
}
}
`