Files
genqlient/generate/testdata/queries/SimpleMutation.graphql
T
2021-04-02 16:34:15 -07:00

11 lines
225 B
GraphQL

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