mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 09:51:59 +03:00
5bfce057c6
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2771 GitOrigin-RevId: 0c90136f956df3f4552140e6ca3d2f4766f8b3f5
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
|