mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-20 05:51:54 +03:00
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
|
||
|
}
|
||
|
}
|
||
|
}
|