Parsing mistake
execveat opened this issue · 2 comments
execveat commented
query X {
a(b:c) {
d e f g h {
i
}
}
}
execveat commented
Not always though. Hm, hard to nail down.
execveat commented
Ok, figured it out. The problem lies in pretty_print_graphql:
In [10]: print(gqlspection.utils.pretty_print_graphql("""
...: query a {
...: b() {
...: c
...: }
...: d
...: e
...: """))
query a {
b() {
c
}
d e