Repository URL to install this package:
|
Version:
0.6.2 ▾
|
| dist |
| src |
| dist |
| src |
| CHANGELOG.md |
| README.md |
| jest.config.js |
| package.json |
| tsconfig.json |
import { cache, createApolloClient, consoleLink, errorLink, httpLink, ApolloLink, } from '@skava/create-apollo-client' import { stateLink } from './apolloState' const link = ApolloLink.from([consoleLink, errorLink, stateLink, httpLink]) const client = createApolloClient({ link }) export { cache, client }