Daniel Trojanowski

Results 42 comments of Daniel Trojanowski

> @trojanowski are you still using this module? I am updating whole package and I am thinking about adding this feature. Yes, I do. I'm using my custom build right...

WIP - unfortunately suspense mode doesn't work with that version

> @trojanowski can we do something to help you with this PR? I could add tests if you agree @FezVrasta it would be nice, thanks. Right now the suspense mode...

@FezVrasta yes, it seems this PR requires further work. We should implement merging previous data with the last one. react-apollo implements it that way: https://github.com/apollographql/react-apollo/blob/master/src/Query.tsx#L474. Strange that your codesandbox demo...

@hjonasson you can force the dev server to use Bun's runtime instead of Node.js by using the `--bun` flag, like this: ```sh bun run --bun dev ``` However, it currently...

@FezVrasta long term it will be solved with a combination of React Suspense and [Concurrent Rendering](https://www.youtube.com/watch?v=ByBPyMBTzM0) (it should even work in the current version, but it's experimental, and I don't...

@FezVrasta I'm not a fan of this behavior (it's a breaking change for me in some cases), but I'm going to fix it to make it similar to react-apollo. I...

@rsjolundchas the first example should work. Please look at https://codesandbox.io/s/n4o02oz6jm - you should see different images for cats and dogs.

Hi @wilcoschoneveld, thanks for the report. > The way to solve it is to re-subscribe to the ObservableQuery on error, since apollo leaves the subscription in a terminated state. Not...

@bradleyayers it seems it's an issue with apollo-client which is already fixed in master: * https://github.com/apollographql/apollo-client/pull/4352 * https://github.com/apollographql/react-apollo/issues/556