graphql-engine/server/tests-py/queries/remote_schemas/simple2_mutation.yaml
Brandon Simmons a89777c808 Fix result ordering in some incorrect tests
These were generated with `--accept` and inspected individually.

Mark failing cases as xfail: #3271
2019-11-05 15:15:25 -06:00

20 lines
306 B
YAML

description: Simple2 GraphQL mutation
url: /v1/graphql
status: 200
response:
data:
createUser:
user:
id: 123
username: foobar
query:
query: |
mutation {
createUser(id: 123, username: "foobar") {
user {
id
username
}
}
}