We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e565b72 commit 9b2aabdCopy full SHA for 9b2aabd
src/apollo.js
@@ -5,10 +5,10 @@ import { onError } from 'apollo-link-error';
5
import { ApolloLink } from 'apollo-link';
6
7
const globalLoader = new ApolloLink((operation, forward) => {
8
- // Use mobx or redux (or some other state manager library) for a global store
9
- console.log('add loading count');
+ // Use Mobx or Redux (or other) for a global state manager
+ console.log('increment loading count');
10
return forward(operation).map((response) => {
11
- console.log('remove loading count');
+ console.log('decrement loading count');
12
return response;
13
});
14
0 commit comments