├── .babelrc ├── .eslintrc ├── .gitignore ├── POST-pt.md ├── POST.md ├── README.md ├── package.json ├── src ├── client.js ├── index.js └── schema.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasconstantino/graphql-apollo-rest-wrap/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasconstantino/graphql-apollo-rest-wrap/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /POST-pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasconstantino/graphql-apollo-rest-wrap/HEAD/POST-pt.md -------------------------------------------------------------------------------- /POST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasconstantino/graphql-apollo-rest-wrap/HEAD/POST.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasconstantino/graphql-apollo-rest-wrap/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasconstantino/graphql-apollo-rest-wrap/HEAD/package.json -------------------------------------------------------------------------------- /src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasconstantino/graphql-apollo-rest-wrap/HEAD/src/client.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasconstantino/graphql-apollo-rest-wrap/HEAD/src/index.js -------------------------------------------------------------------------------- /src/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasconstantino/graphql-apollo-rest-wrap/HEAD/src/schema.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasconstantino/graphql-apollo-rest-wrap/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasconstantino/graphql-apollo-rest-wrap/HEAD/yarn.lock --------------------------------------------------------------------------------