0.1.1 • Published 8 years ago
graphql-cli-codegen v0.1.1
graphql-cli-codegen
apollo-codegen plugin for graphql-cli
Warning! This plugin is highly experimental. It is not tested at all and hacks with the codegen internals. Don't expect immediate support.
Installation
npm i -g graphql-cli graphql-cli-codegenUsage
Configure the plugin via a .graphqlconfig.
The schema will be obtained from the schemaPath key and the files from the includes key.
All other options such as target or output must be placed in the extensions.codegen key.
Here is an example:
.graphqlconfig
{
"schemaPath": "schema.graphqls",
"includes": [
"src/**/*.graphql",
"src/**/*.gql",
],
"extensions": {
"codegen": {
"target": "flow",
"output": "src/graphql-annotations.js"
}
}
}You can now run:
graphql codegenIt's done now!