mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
a509a86eaa
* implement internal graphql server for remote schema tests * add one more graphql endpoint and more tests * add missing dependency
17 lines
223 B
YAML
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
|
|
}
|
|
}
|