graphql-engine/server/tests-py/queries/remote_schemas/simple2_mutation.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

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
}
}
}