2022-09-09 11:53:35 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
2023-12-09 22:15:02 +00:00
|
|
|
query AuthorsAllQuery($limit: Int, $offset: Int) {
|
|
|
|
load_authors_all(limit: $limit, offset: $offset) {
|
2022-12-17 03:27:00 +00:00
|
|
|
id
|
2022-09-09 11:53:35 +00:00
|
|
|
slug
|
|
|
|
name
|
|
|
|
bio
|
2023-11-28 13:18:25 +00:00
|
|
|
pic
|
|
|
|
created_at
|
2022-11-13 19:35:57 +00:00
|
|
|
stat {
|
2022-11-19 05:00:54 +00:00
|
|
|
shouts
|
2022-11-13 19:35:57 +00:00
|
|
|
followers
|
2022-11-22 09:27:01 +00:00
|
|
|
comments: commented
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|