mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
20 lines
349 B
YAML
20 lines
349 B
YAML
description: Select author and their articles
|
|
url: /v1alpha1/graphql
|
|
status: 200
|
|
query:
|
|
query: |
|
|
query {
|
|
author (where: {name: {_eq: "Author 1"}}) {
|
|
id
|
|
name
|
|
articles (
|
|
where: {is_published: {_eq: true}}
|
|
limit: 10,
|
|
offset: 1
|
|
) {
|
|
id
|
|
title
|
|
}
|
|
}
|
|
}
|