Arnoud
Arnoud
> is injectMutationState not going to be implemented? Probably today, but this PR was very old and it's easier to open a new PR instead of resolving all the conflicts....
@adam4nj injectMutationState is now available in [v5.22 ](https://github.com/TanStack/query/releases/tag/v5.22.0)!
First thoughts: Can we do this via an overload on `queryFn`? In this implementation it is possible to pass a function to `queryFn` and a function returning an observable to...
[Repro on Stackblitz](https://stackblitz.com/github/shessafridi/angular-query-refetch-bug?file=package.json&preset=node)
Hi @shessafridi the code in `ngOnInit` is not doing what it looks like. ```ts id = signal(''); query = injectQuery(() => ({ enabled: !!this.id(), queryKey: ['test', this.id()], queryFn: () =>...
Did find this somewhat related [Vue Query issue](https://github.com/TanStack/query/issues/5910).
> 2. **Rewrite the examples**. The current examples in this PR seem bloated. Let's get the dependencies and configs to the bare minimum, and maybe consider using Vite like all...
@riccardoperra are the examples working correctly while developing the adapter? We've had trouble in Query before as there were two package.json files, one in the src directory and one in...
> Looking at the commit, you simply add the exports manually and publish the "root" folder, right? Are you also publishing the source code? Yes, but I did recently remove...
Looks good to me, @TkDodo agree if we merge this?