在我的package.json
文件中,我有运行graphql-codegen
的脚本条目,但它抱怨--config
参数无效:
$> yarn gen
yarn run v1.21.1
$ graphql-codegen --config codegen.yml
Error: Unknown argument: config
...
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
因为我相信默认文件名是codegen.yml
无论如何,我尝试在没有该参数的情况下运行它并且没有生成任何内容:
$> yarn graphql-codegen
yarn run v1.21.1
$ /home/aaron/projects/my_app/node_modules/.bin/graphql-codegen
Done in 0.17s.
有任何想法吗?