Rename the query constant to have an underscore in it. (#241)

We got reports of conflicts with the old constant-name and symbols that
people were defining in their app.
This commit is contained in:
Craig Silverstein
2022-11-22 14:12:38 -08:00
committed by GitHub
parent 587f77046b
commit e3227388fe
57 changed files with 148 additions and 148 deletions
@@ -42,7 +42,7 @@ type __SimpleMutationInput struct {
func (v *__SimpleMutationInput) GetName() string { return v.Name }
// The query or mutation executed by SimpleMutation.
const SimpleMutationOperation = `
const SimpleMutation_Operation = `
mutation SimpleMutation ($name: String!) {
createUser(name: $name) {
id
@@ -61,7 +61,7 @@ func SimpleMutation(
) (*SimpleMutationResponse, error) {
req := &graphql.Request{
OpName: "SimpleMutation",
Query: SimpleMutationOperation,
Query: SimpleMutation_Operation,
Variables: &__SimpleMutationInput{
Name: name,
},