mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 09:51:59 +03:00
a89777c808
These were generated with `--accept` and inspected individually. Mark failing cases as xfail: #3271
20 lines
306 B
YAML
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
|
|
}
|
|
}
|
|
}
|