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
Current implementation doesn't support zoneless ssr app. It lacks Pending Tasks and thanks to using angular's http client with the apollo http link, stays unstable until the response arrives, but nothing then prevents app from becoming stable between cache updates and re-rendering of the components.
To Reproduce
Minimal zoneless Angular SSR app that uses apollo-angular and in memory cache.
Expected behavior
Angular app is kept unstable for whole Apollo processing - request, cache updates and return of data to consumer
But as soon as it is released as stable API, we can depend on it and update our requirements. There's nothing wrong with dropping support for old versions as long as we have a good reason to do it.
Describe the bug
Current implementation doesn't support zoneless ssr app. It lacks Pending Tasks and thanks to using angular's http client with the apollo http link, stays unstable until the response arrives, but nothing then prevents app from becoming stable between cache updates and re-rendering of the components.
To Reproduce
Minimal zoneless Angular SSR app that uses apollo-angular and in memory cache.
Expected behavior
Angular app is kept unstable for whole Apollo processing - request, cache updates and return of data to consumer
Environment:
Additional context
I overrode locally all the
Apollo
operations, by running them as pending tasks, example:Naturally
watchQuery
was bigger challenge, so I did following patch on the QueryRef level:Would be great if we can get this fixed as zoneless Angular seems to be the feature.
The text was updated successfully, but these errors were encountered: