mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
1abb1dee69
https://github.com/hasura/graphql-engine-mono/pull/1740 GitOrigin-RevId: e807952058243a97f67cd9969fa434933a08652f
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
|