1const defaultOptions = {
2 watchQuery: {
3 fetchPolicy: 'no-cache',
4 },
5 query: {
6 fetchPolicy: 'no-cache',
7 }
8}
9
10const client = new ApolloClient({
11 link: concat(authMiddleware, httpLink),
12 cache: new InMemoryCache(),
13 defaultOptions: defaultOptions,
14})
15