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
Apollo Client 2.5.0 bundles apollo-link-state already so this dependency could be removed from this package.
Looks like there are some minor breaking changes as well: Found @client directives in query but no client resolvers were specified. You can now pass apollo-link-state resolvers to the ApolloClient constructor. This happens in new installations of this plugin since it requires ^2.4.
A quick workaround for this is pinning apollo-client version (with Yarn in this case):
"resolutions": {
"apollo-client": "2.4.13"
}
The text was updated successfully, but these errors were encountered:
Apollo Client 2.5.0 bundles
apollo-link-state
already so this dependency could be removed from this package.Looks like there are some minor breaking changes as well:
Found @client directives in query but no client resolvers were specified. You can now pass apollo-link-state resolvers to the ApolloClient constructor.
This happens in new installations of this plugin since it requires^2.4
.A quick workaround for this is pinning
apollo-client
version (with Yarn in this case):The text was updated successfully, but these errors were encountered: