Transform .graphql files to graphql-js typescript code
We first had graphql-js implementation, but developers weren't happy with it. So it was born schema first with graphql-tools, merge-graphql-schemas, graphql-modules.
There is also a codemod to transform your .js files to .graphql files: jscodeshift-graphql-files.
After a lot of time, schema first showed some scaling problems, Schema First Problems, mostly because it does not colocate schema with resolvers, and code is much more powerful to implement abstraction on top of it.
This codemod exists to helps us move back to code first approach (graphql-js and related tools).
It will transform a .graphql file and transform in a graphql-js .ts declartion
npx graphql2ts myschema.graphql mySchemaOutput.ts
yarn jest