├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .node-version ├── .nvmrc ├── LICENSE ├── README.md ├── package.json ├── src ├── __mocks__ │ └── apollo-client.js ├── __snapshots__ │ └── provider.test.jsx.snap ├── index.js ├── provider.jsx ├── provider.test.jsx └── withClient.jsx └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 10.14.2 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | .node-version -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/package.json -------------------------------------------------------------------------------- /src/__mocks__/apollo-client.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /src/__snapshots__/provider.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/src/__snapshots__/provider.test.jsx.snap -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/src/index.js -------------------------------------------------------------------------------- /src/provider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/src/provider.jsx -------------------------------------------------------------------------------- /src/provider.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/src/provider.test.jsx -------------------------------------------------------------------------------- /src/withClient.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/src/withClient.jsx -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titel-media/react-apollo-multiple-clients/HEAD/yarn.lock --------------------------------------------------------------------------------