graphql-rust/graphql-parser

mutations are not printed properly

timsuchanek opened this issue · 0 comments

This mutation:

mutation($first: Int, $second: Int) {
  field1(first: $first)
  field2(second: $second)
}

gets printed like this:

mutation {
  field1(first: $first)
  field2(second: $second)
}

It's the same problem as in #47, but for mutations.