We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
watchQuery
query
The watchQuery/query wrappers of ApolloClient modify the passed-in options in-place to honor the global shouldForceFetch setting: https://github.com/apollostack/apollo-client/blob/master/src/index.ts#L119
shouldForceFetch
This has the unexpected side-effect of forcing re-evaluation of queries in react-apollo as the options now don't match that of the original query.
See the original issue at apollographql/react-apollo#90 for detailed discussion.
The text was updated successfully, but these errors were encountered:
Don't mutate options
872f60b
Fixes #339
Fixed in release 0.3.25!
0.3.25
Sorry, something went wrong.
stubailo
No branches or pull requests
The
watchQuery
/query
wrappers of ApolloClient modify the passed-in options in-place to honor the globalshouldForceFetch
setting: https://github.com/apollostack/apollo-client/blob/master/src/index.ts#L119This has the unexpected side-effect of forcing re-evaluation of queries in react-apollo as the options now don't match that of the original query.
See the original issue at apollographql/react-apollo#90 for detailed discussion.
The text was updated successfully, but these errors were encountered: