Why the caching is not controlled by ErrorPolicy ?
See here:
https://github.com/zino-app/graphql-flutter/blob/master/packages/graphql/lib/src/core/query_manager.dart#L115-L121
Is this to be expected?
I guess according to the apollo docs it is not expected. In fact, this is probably a fairly critical issue
By default, the error policy treats any GraphQL Errors as network errors and ends the request chain. It doesn't save any data in the cache, and renders your UI with the error prop to be an ApolloError
Fixed by #754
Most helpful comment
I guess according to the apollo docs it is not expected. In fact, this is probably a fairly critical issue