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
Since gql now creates a new object every time it parses, that breaks react-apollo change detection. We should make the same queries === each other, like the original strings do.
The text was updated successfully, but these errors were encountered:
- Improve error message when a dev forgets `gql` to link to docs. [PR #181](#181)
- Memoize results from `gql`, so that we save time on parsing, and we can use `===` to compare queries for performance. [Issue #199](#199) [PR #200](#200)
- Fix error when using `returnPartialData`. [Issue #193](#193) [PR #201](#201)
Since
gql
now creates a new object every time it parses, that breaksreact-apollo
change detection. We should make the same queries===
each other, like the original strings do.The text was updated successfully, but these errors were encountered: