]>
Commit | Line | Data |
---|---|---|
1 | import fetch from 'cross-fetch'; | |
2 | import { ApolloClient, HttpLink, InMemoryCache } from '@apollo/client/core'; | |
3 | import { apollo as apolloConfig } from './config'; | |
4 | ||
5 | const cache = new InMemoryCache(); | |
6 | ||
7 | export const client = new ApolloClient({ | |
8 | cache, | |
9 | link: new HttpLink({ | |
10 | uri: apolloConfig.uri, | |
11 | fetch | |
12 | }), | |
13 | ...apolloConfig | |
14 | }); |