]>
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({ | |
cac85db0 RBR |
8 | cache, |
9 | link: new HttpLink({ | |
10 | uri: apolloConfig.uri, | |
d2cd7f1b RBR |
11 | headers: { |
12 | apiKey: apolloConfig.key | |
13 | }, | |
cac85db0 RBR |
14 | fetch |
15 | }), | |
16 | ...apolloConfig | |
c1bc5993 | 17 | }); |