├── .gitignore ├── .npmignore ├── README.md ├── jest.js ├── package.json ├── register.d.ts ├── register.js ├── test ├── index.test.js └── test.graphql └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | yarn.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardatan/graphql-import-node/HEAD/README.md -------------------------------------------------------------------------------- /jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardatan/graphql-import-node/HEAD/jest.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardatan/graphql-import-node/HEAD/package.json -------------------------------------------------------------------------------- /register.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardatan/graphql-import-node/HEAD/register.d.ts -------------------------------------------------------------------------------- /register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardatan/graphql-import-node/HEAD/register.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardatan/graphql-import-node/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/test.graphql: -------------------------------------------------------------------------------- 1 | type Query { 2 | foo: String 3 | } 4 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardatan/graphql-import-node/HEAD/yarn.lock --------------------------------------------------------------------------------