graphql-code-generatorでエラーがでたのでデバッグしたいっ!

graphql-code-generatorっていう、GraphQLからTypeScriptのTypeを生成してくれるライブラリがあるんですが、生成に失敗しても何か悪いのが全然わからないっていう

Found 1 error
Something went wrong
error Command failed with exit code 1.

エラーが出たことはわかるんですけどね・・。

で、実行前にVERBOSEDEBUGをexportしてやるとエラーの詳細が見れます。

$ export VERBOSE=1 
$ export DEBUG=1
$ yarn graphql-codegen

で、今回はqueryの名前が重複していました😅

参考

The CLI error report is missing necessary information · Issue #2723 · dotansimha/graphql-code-generator