├── .gitignore ├── .npmignore ├── Gruntfile.js ├── LICENSE.txt ├── Makefile ├── README.md ├── eslint.yaml ├── package.json ├── sample.js └── src ├── graphql-query-compress.d.ts └── graphql-query-compress.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/graphql-query-compress/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/graphql-query-compress/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/graphql-query-compress/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/graphql-query-compress/HEAD/README.md -------------------------------------------------------------------------------- /eslint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/graphql-query-compress/HEAD/eslint.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/graphql-query-compress/HEAD/package.json -------------------------------------------------------------------------------- /sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/graphql-query-compress/HEAD/sample.js -------------------------------------------------------------------------------- /src/graphql-query-compress.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/graphql-query-compress/HEAD/src/graphql-query-compress.d.ts -------------------------------------------------------------------------------- /src/graphql-query-compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rse/graphql-query-compress/HEAD/src/graphql-query-compress.js --------------------------------------------------------------------------------