13 lines
240 B
GraphQL
13 lines
240 B
GraphQL
# @genqlient
|
|
#
|
|
# SimpleMutation creates a user.
|
|
#
|
|
# It has a long doc-comment, to test that we handle that correctly.
|
|
# What a long comment indeed.
|
|
mutation SimpleMutation($name: String!) {
|
|
createUser(name: $name) {
|
|
id
|
|
name
|
|
}
|
|
}
|