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

24 lines
429 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
2024-01-31 12:34:15 +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
comments: commented
2023-12-27 22:50:42 +00:00
followers
followings
rating
rating_shouts
rating_comments
2023-12-24 12:56:30 +00:00
}
2022-09-09 11:53:35 +00:00
}
}
`