webapp/src/graphql/query/core/authors-load-by.ts

20 lines
348 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
2023-12-24 12:56:30 +00:00
query AuthorsAllQuery($by: AuthorsBy, $limit: Int, $offset: Int) {
2023-12-26 21:15:49 +00:00
load_authors_by(by: $by, 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-12-24 12:56:30 +00:00
pic
2023-11-28 13:18:25 +00:00
created_at
2023-12-24 12:56:30 +00:00
stat {
shouts
followers
comments: commented
}
2022-09-09 11:53:35 +00:00
}
}
`