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
'
Generating a client against the following valid query (Note: I am running this against Hasura):
mutation addPerson { insert_person_one(object: { username: "Foo's bar" }) { id } }
Results in the following error:
File "src/black/parsing.py", line 90, in lib2to3_parse black.parsing.InvalidInput: Cannot parse: 15:15: """s bar"}) {\n'' id\n'' }\n''}\n')
It seems codegen replaces the ' with a """ for some reason.
"""
Changing the query to:
mutation addPerson { insert_person_one(object: { username: "Foo bar" }) { id } }
Works just fine
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Generating a client against the following valid query (Note: I am running this against Hasura):
Results in the following error:
It seems codegen replaces the
'
with a"""
for some reason.Changing the query to:
Works just fine
The text was updated successfully, but these errors were encountered: