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