graphql-client
graphql-client copied to clipboard
Literal values printing to console
When I use a hardcoded float in my mutation I see multiple lines being printed to the console during cargo watch:
object: {
quantity: 1.2
}

I haven't been able rogue printing code in graphql_client. I suspect it is probably in your own code or another dependency. Is it still happening? Do you have a more precise reproduction?
Running cargo watch here is printing it for me: https://github.com/ronanyeah/gql_print
If you change the 0.0 in mutation.graphql to 0 it will not print so looks like it is just floats causing it.