16 lines
266 B
GraphQL
16 lines
266 B
GraphQL
# Fragment for authors
|
|
fragment Author on Author {
|
|
name
|
|
email
|
|
bio
|
|
}
|
|
|
|
|
|
# Gets all authors
|
|
query GetAllAuthors($pageSize: Int = 10, $page: Int = 1) {
|
|
# @genqlient(flatten: true)
|
|
authors(pagination: { pageSize: $pageSize, page: $page }) {
|
|
...Author
|
|
}
|
|
}
|