mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
4270529c11
* server: basic test setup * server: use the default transaction mode * server: basic tests in yaml files * server: restructure test setup and some more tests
17 lines
229 B
YAML
17 lines
229 B
YAML
description: Nested select on article
|
|
url: /v1alpha1/graphql
|
|
status: 200
|
|
query:
|
|
query: |
|
|
query {
|
|
article {
|
|
id
|
|
title
|
|
content
|
|
author {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|