mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
17 lines
261 B
YAML
17 lines
261 B
YAML
description: Nested select on article with limit
|
|
url: /v1alpha1/graphql
|
|
status: 200
|
|
query:
|
|
query: |
|
|
query {
|
|
article(limit: 3, offset: 2) {
|
|
id
|
|
title
|
|
content
|
|
author {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|