Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Resubscribe after error -- apollo-client issue 2513 #1531

Merged
merged 6 commits into from
Jan 17, 2018

Conversation

wdimiceli
Copy link
Contributor

This is a fairly minimal fix for React components ceasing to get updates after an error occurs in a query. It happens due to the way observables work.. they will terminate a subscription after the error handler is called. Without going through and reconsidering all of the subscription logic between react-apollo and the client, simply resubscribing on error seems like the simplest way to get it working again. A unit test was written to cover this scenario.

Here is the most relevant issue:
apollographql/apollo-client#2513
I have seen several others which might be resolved with this fix.

Hotfix for apollo-client issue 2513.

When a query has an error, Zen Observables will terminate the
subscription, so the react component no longer receives updates.
This commit adds a simple resubscribe method and calls it when
an error occurs.
@apollo-cla
Copy link

@wdimiceli: Thank you for submitting a pull request! Before we can merge it, you'll need to sign the Meteor Contributor Agreement here: https://contribute.meteor.com/

@rosskevin
Copy link
Contributor

@excitement-engineer if this looks good, we need to mirror the tests and changes to Query.

@wdimiceli if you want to increase bundle maxSize in the package.json and push it that will solve the build error. 4.8 will be fine.

Copy link
Contributor

@rosskevin rosskevin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good to me, but I'm no authority in this area. I would prefer @jbaxleyiii and @excitement-engineer give their approval.

@edorivai
Copy link
Contributor

Is there a chance this will be released on NPM any time soon? Pretty, pretty please 😄

@rosskevin
Copy link
Contributor

Please check the releases tab before posting. We are going to try and release more frequently and this most certainly has been released (though strangely danger did not require a changelog entry for it).

Try the 2.1 beta: https://github.com/apollographql/react-apollo/releases

@edorivai
Copy link
Contributor

@rosskevin Sorry, wasn't aware of the beta releases, just checked npm stable. Thanks!

@nfantone
Copy link

nfantone commented Feb 3, 2018

Unfortunately, this didn't resolve #1385 for me 😞 . However, installing the beta release of react-apollo + latest [email protected] + [email protected] made requests work again after an error and the loading is now being set correctly.

@AndrewHenderson
Copy link

AndrewHenderson commented Feb 9, 2018

@nfantone I have upgraded to all of those versions with [email protected].

I'm finding that when their is an error in a component, the loading prop is false, however none of the props are passed to the component.

I'm using a sub-resolver and testing when there is an error in that single "sub-function."

Everything works as expected in GraphQL – when there is an error, that single property is null, partial result is returned, and the GraphQL error is returned on the response.

However, because there is an error, none of the partial result gets passed to the component 😕

@edorivai
Copy link
Contributor

edorivai commented Feb 9, 2018

@AndrewHenderson I might be misunderstanding, but partial results sound like a job for errorPolicy: https://www.apollographql.com/docs/react/features/error-handling.html#policies

@AndrewHenderson
Copy link

@edorivai That’s exactly the setting I needed. I completely missed that. Thank you! 😁

@nfantone
Copy link

nfantone commented Feb 9, 2018

@AndrewHenderson Actually, what I'm seeing is that now the loading and error properties are working fine, but - on error, data continues to hold the last correctly fetched data, instead of what was actually returned by the /graphql response.

@edorivai Would you have any input on this? Would this be the intended functionality?

@AndrewHenderson
Copy link

@edorivai I tried using errorPolicy, but I’m still experiencing what @nfantone has described.

I thought it might work using the new Query component, but don’t see an errorPolicy propType for that new component.

@edorivai
Copy link
Contributor

edorivai commented Feb 10, 2018 via email

@tmeasday
Copy link
Contributor

tmeasday commented Mar 9, 2018

I could be misunderstanding but I suspect this does not work with polling queries (I haven't been able to make it work), because apollo-client does not resume polling after a network error

Perhaps if the query has pollInterval set react-apollo should also re-create the observableQuery on error also?

@404sand808s
Copy link

Hi guys, checking in to see if anybody knows when this might be released — desperately need this to re-establish connection after an error (to give the user a way to reload). Thanks, and sorry for the bump.

@iamrommel
Copy link

This is really breaking, we are are using react-native and apollo, and whenever i go to elevator (which most of the time has not data connection), my app gets error, and even when i get back to wifi connection, my connection cannot be recovered. Correct data are being pull from the server, but the component are not updated

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

10 participants