20 lines
346 B
TypeScript
20 lines
346 B
TypeScript
import { gql } from '@urql/core'
|
|
|
|
export default gql`
|
|
query AuthorsAllQuery($by: AuthorsBy, $limit: Int, $offset: Int) {
|
|
load_authors_(by: $by, limit: $limit, offset: $offset) {
|
|
id
|
|
slug
|
|
name
|
|
bio
|
|
pic
|
|
created_at
|
|
stat {
|
|
shouts
|
|
followers
|
|
comments: commented
|
|
}
|
|
}
|
|
}
|
|
`
|