mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 09:51:59 +03:00
4a69fdeb01
GitOrigin-RevId: 108e8b25e745cb4f74d143d316262049cef62b70
26 lines
438 B
YAML
26 lines
438 B
YAML
- description: query with namespace
|
|
url: /v1/graphql
|
|
status: 200
|
|
query:
|
|
query: |
|
|
{
|
|
foo {
|
|
hero(episode: 4) {
|
|
id
|
|
name
|
|
... on BarDroid {
|
|
id
|
|
name
|
|
primaryFunction
|
|
}
|
|
}
|
|
}
|
|
}
|
|
response:
|
|
data:
|
|
foo:
|
|
hero:
|
|
id: '1'
|
|
name: R2-D2
|
|
primaryFunction: Astromech
|