batshit icon indicating copy to clipboard operation
batshit copied to clipboard

A batch manager that will deduplicate and batch requests for a certain data type made within a window. Useful to batch requests made from multiple react components that uses react-query

Results 5 batshit issues
Sort by recently updated
recently updated
newest added

Currently it's always located in the bottom right, would be nice and useful if it could be moved with a prop, or even the possibility to apply own styles for...

If the keyresolver can't find a match for the key, it returns undefined, resulting in reactQuery throwing up. Perhaps it should coalesce to null instead?

It would be good to have a way to group by parameters. ```js const bob = users.fetch(1); ... ... const alice = users.fetch(2, {date: new Date()}); ```

Heya. Thanks for this library, it's very handy! Just to be sure, I found no way to pass `signal` to my fetcher. [See here](https://tanstack.com/query/latest/docs/framework/react/guides/query-functions#queryfunctioncontext) > signal?: AbortSignal > > [AbortSignal](https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal)...

It seems like that when using the Tanstack Query hook `useSuspenseQuery` it only fetches on client side and streaming actually never happens. Would it not be possible to make an...