graphql-engine/server/tests-py/queries/remote_schemas/simple2_query.yaml
Anon Ray a509a86eaa implement internal graphql server for remote schema tests (#1117)
* implement internal graphql server for remote schema tests

* add one more graphql endpoint and more tests

* add missing dependency
2018-11-26 18:38:16 +05:30

17 lines
223 B
YAML

description: Simple2 GraphQL query
url: /v1alpha1/graphql
status: 200
response:
data:
user:
username: john
id: 2
query:
query: |
query {
user(id: 2) {
id
username
}
}