├── .gitignore ├── README.md ├── package.json ├── src ├── index.js └── schema.graphql └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/graphql-rest-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/graphql-rest-wrapper/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/graphql-rest-wrapper/HEAD/src/index.js -------------------------------------------------------------------------------- /src/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/graphql-rest-wrapper/HEAD/src/schema.graphql -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/graphql-rest-wrapper/HEAD/yarn.lock --------------------------------------------------------------------------------