Nazarii Shvets
Nazarii Shvets
Sure, thanks for suggestion. I did ban it for my local environment, but: - I also use different IDE`s for specific usecases - Can't share .idea with my teammates via...
Well, if library really cares about bytes of bundle size, it can extract maping logic into separate utility, so it can be tree-shaked `debug(toDebug(query))`
Hi! I also have same issue, and solution works well. Thanks, saved my day!
Hi, coming back here to add suggestion In our application with this impl we still had problems with scroll, but this time at touch devices So our final fix is...
I suggest it as `keepFresh` parameter bcs its what first come to my mind when I tried to connect my session info to `keepFresh` Sure, its more about `cache` than...
I think its important to account for this in cache key, bcs it could lead to unnessesary cache hits Bcs when i switching my accounts, and see cached data from...
Sure u can purge it. And its the only way to deal with this kind of cases My point is — add ability to preserve that cache than your depencenies...
> So, we talk about something like this? > > ```ts > cache(query, { > extraDependencies: [$userStatus] > }) > ``` Yes, something like that > But I still do...
I spend some time digging codebase, and from that i could tell, i easier to add `extraDependencies` to `createQuery` itself, rather than making `query.__.sourced` reactive (and we need to make...
Yes, this is implementation to which i come trying to bring this feature in But it(`createHeadlessQuery`) too low-level to use as default factory for all queries. For my cases, where...