mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 21:41:44 +03:00
a509a86eaa
* implement internal graphql server for remote schema tests * add one more graphql endpoint and more tests * add missing dependency
20 lines
312 B
YAML
20 lines
312 B
YAML
description: Simple2 GraphQL mutation
|
|
url: /v1alpha1/graphql
|
|
status: 200
|
|
response:
|
|
data:
|
|
createUser:
|
|
user:
|
|
username: foobar
|
|
id: 123
|
|
query:
|
|
query: |
|
|
mutation {
|
|
createUser(id: 123, username: "foobar") {
|
|
user {
|
|
id
|
|
username
|
|
}
|
|
}
|
|
}
|