├── .babelrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── dist └── .gitkeep ├── mocha-babel.js ├── package.json ├── src ├── default-query-resolver.js ├── index.js └── mutation-factory.js └── test ├── endToEndTest.js └── twitter.schema /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoebstl/graphql-auto-mutation/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoebstl/graphql-auto-mutation/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | node_modules 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoebstl/graphql-auto-mutation/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoebstl/graphql-auto-mutation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoebstl/graphql-auto-mutation/HEAD/README.md -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mocha-babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoebstl/graphql-auto-mutation/HEAD/mocha-babel.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoebstl/graphql-auto-mutation/HEAD/package.json -------------------------------------------------------------------------------- /src/default-query-resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoebstl/graphql-auto-mutation/HEAD/src/default-query-resolver.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoebstl/graphql-auto-mutation/HEAD/src/index.js -------------------------------------------------------------------------------- /src/mutation-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoebstl/graphql-auto-mutation/HEAD/src/mutation-factory.js -------------------------------------------------------------------------------- /test/endToEndTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoebstl/graphql-auto-mutation/HEAD/test/endToEndTest.js -------------------------------------------------------------------------------- /test/twitter.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejoebstl/graphql-auto-mutation/HEAD/test/twitter.schema --------------------------------------------------------------------------------