Yurk Sha
Yurk Sha
I may be wrong and I would appreciate it if you could help me realize this, but based on current code, watchers are **always** connected to component instance. How it...
@kitten I found your [use case](https://github.com/urql-graphql/urql/issues/1596) - handling several awaits when calling several `await useQuery()`: ```ts const handle = useClientHandle(); const resultOne = await handle.useQuery(/* ... */); const resultTwo =...
Thanks @negezor ☀️ > why the effects in `useClientHandle()` were initially manually stopped The reason of having `useClientHandle()` and manually stopping watchers I found is here https://github.com/urql-graphql/urql/pull/3610#issuecomment-2178843530. And the reason...
> @yurks I deployed these changes to production, found one problem. Uploading files does not work in mutations, it sends `{}` instead of `File` @negezor thanks for the review! I...
I'm unable to check this right now, but want to mention - deep variables unwrapping was _not_ introduced in https://github.com/urql-graphql/urql/pull/3619. That PR is about fixing memory leaks with unwrapping, but...
The changes looks reasonable for me, supporting of deep unwrapping is quite tricky and maybe non used widely. However, this is not just `Fix regression breaking variables typing`, but breaking...