mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 09:51:59 +03:00
20 lines
291 B
YAML
20 lines
291 B
YAML
|
- description: query with namespace
|
||
|
url: /v1/graphql
|
||
|
status: 200
|
||
|
query:
|
||
|
query: |
|
||
|
{
|
||
|
foo {
|
||
|
hero(episode: 4) {
|
||
|
id
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
response:
|
||
|
data:
|
||
|
foo:
|
||
|
hero:
|
||
|
id: '1'
|
||
|
name: R2-D2
|