This mutation: ```graphql mutation($first: Int, $second: Int) { field1(first: $first) field2(second: $second) } ``` gets printed like this: ```graphql mutation { field1(first: $first) field2(second: $second) } ``` It's the same problem as in #47, but for mutations.