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

22 lines
378 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
2022-11-15 12:05:56 +00:00
query AuthorLoadByQuery($by: AuthorsBy, $limit: Int, $offset: Int) {
2023-11-28 13:18:25 +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
userpic
2022-11-18 02:23:04 +00:00
# communities
2022-09-09 11:53:35 +00:00
links
2023-11-28 13:18:25 +00:00
created_at
last_seen
2022-11-18 02:23:04 +00:00
# ratings {
# rater
# value
# }
2022-09-09 11:53:35 +00:00
}
}
`