github.com/Desuuuu/genqlient@v0.5.3/generate/testdata/queries/SimpleMutation.graphql (about)

     1  # @genqlient
     2  #
     3  # SimpleMutation creates a user.
     4  #
     5  # It has a long doc-comment, to test that we handle that correctly.
     6  # What a long comment indeed.
     7  mutation SimpleMutation($name: String!) {
     8    createUser(name: $name) {
     9      id
    10      name
    11    }
    12  }