Version 3 breaking changes
See original GitHub issueSome changes have been made in the branch v2.2 that got me thinking, do we really need to have custom configs to create an ApolloClient
? it would be much simpler to just have support for any ApolloClient
, specially because I think most people will go for apollo-boost
, the only downside I see is to implement subscriptions and other stuff that’s not yet in apollo-boost
(related to this issue) but even for that we can just create our custom ApolloClient and follow Apollo’s docs to integrate the different links
Related to #12
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
Breaking changes version 3 - Optimizely
This topic describes breaking changes in the Content Delivery API. Suggest Edits. A breaking change may cause a component to fail. When a...
Read more >Breaking Changes · microsoft/TypeScript Wiki - GitHub
These changes list where implementation differs between versions as the spec and compiler are simplified and inconsistencies are corrected. For ...
Read more >Version 3.x - Breaking Changes :: Documentation for Senzing
Version 3.x - Breaking Changes. Senzing Hardware and Software Requirements Changes. Supported Operating Systems have been updated to newer versions.
Read more >Breaking changes - Flutter documentation
A list of migration guides for breaking changes in Flutter. ... Released in Flutter 3; Released in Flutter 2.10; Released in Flutter 2.5;...
Read more >Upgrade to Prisma 3
Prisma 3 introduces a number of breaking changes if you are upgrading from an earlier version (any 2.x version), therefore, it is important...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Here’s an example that creates the same
ApolloClient
created by this package using every possible option:The code is not really heavy to understand, but there are a lot of dependencies
@LawJolla you’re right, I’ll update the comment with a fix