We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In graphql you are able to create a query and a mutation with the same namespace. When gqlg code is run, these two will names will clash upon export.
Would it be possible to append the query & file names with Query, and the mutation & file names with Mutation
type Query { thingById(id: ID!): Thing! } type Mutation { thingById(input: Thing!): Thing! }
Current Result:
// in queries/thingById.gql query thingById($id: ID!){ thingById(id: $id){ .... } } // in mutations/thingById.gql mutation thingById($input: Thing!){ thingById(input: $input){ .... } }
Expected Result:
// in queries/thingByIdQuery.gql query thingByIdQuery($id: ID!){ thingById(id: $id){ .... } } // in mutations/thingByIdMutation.gql mutation thingByIdMutation($input: Thing!){ thingById(input: $input){ .... } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In graphql you are able to create a query and a mutation with the same namespace. When gqlg code is run, these two will names will clash upon export.
Would it be possible to append the query & file names with Query, and the mutation & file names with Mutation
Current Result:
Expected Result:
The text was updated successfully, but these errors were encountered: