Hi,
Is there any way to mute/catch error which appearing in the server console, when I run mutations which throws an error?
I've included a simple case on GitHub (https://github.com/mzygmunt/graphql-server-issue). When I run mutation, then I get the following error in the console:

Experiencing the same, would find it useful to suppress these errors.
You can pass debug: false as part of the options, which should stop errors from being printed to the console. I have a feeling that maybe the option isn't documented yet...
You are right it is documented on dev.apollodata.com. However it is missing from the Readme.md.
// a boolean option that will trigger additional debug logging if execution errors occur
debug?: boolean
@helfer It worked for me. Thanks
@helfer For me too!!! thanks!!!
Most helpful comment
You can pass
debug: falseas part of the options, which should stop errors from being printed to the console. I have a feeling that maybe the option isn't documented yet...