You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm frequently getting an error in our production logs: Cannot set property 'networkStatus' of undefined, specifically from line 95 of apollo-client/data/queries.js: this.store[fetchMoreForQueryId].networkStatus = NetworkStatus.ready;
In context:
this.store[queryId].networkStatus = NetworkStatus.ready;
// If we have a `fetchMoreForQueryId` then we need to update the network
// status for that query. See the branch for query initialization for more
// explanation about this process.
if (typeof fetchMoreForQueryId === 'string') {
this.store[fetchMoreForQueryId].networkStatus = NetworkStatus.ready;
}
};
Unfortunately I can't reliably replicate this issue. Has anyone had a similar problem?
The text was updated successfully, but these errors were encountered:
apollo-client 2.2.8
react-apollos 2.1.3
I'm frequently getting an error in our production logs:
Cannot set property 'networkStatus' of undefined
, specifically from line 95 ofapollo-client/data/queries.js
:this.store[fetchMoreForQueryId].networkStatus = NetworkStatus.ready;
In context:
Unfortunately I can't reliably replicate this issue. Has anyone had a similar problem?
The text was updated successfully, but these errors were encountered: