Luke Morales
Luke Morales
While the major version is still not out there, I released [v1.1.3](https://github.com/lukemorales/query-key-factory/releases/tag/v1.3.3) that makes the object returned in a dynamic query super strict to the only expected keys. Hope that...
@tklaas this is the first report on an issue like this, but I can see `mergeQueryKeys` being the cause of the slowness as it is iterating over each array member...
@tklaas I've created this dummy repro to match what you just shared and I get no typescript errors: ```ts import { createQueryKeyStore } from '@lukemorales/query-key-factory'; type PersistedSpraypaintRecord = { id:...
Oh, ok I think I know what the issues are: 1. I completely overlook this in your example, but when you create a queryKey definition with a function `allStats: ()...
But your issue gave me an ideia of a improvement, perhaps I should deprecate `mergeQueryKeys` for being low in performance and expose an util that allows what you're trying to...
Hi folks, sorry for taking so long to tackling this issue, I'm able to put more effort in this lib for the next few weeks. I just released [v1.1.3](https://github.com/lukemorales/query-key-factory/releases/tag/v1.3.3) with...
I know this would be a neat feature, but the type-system is already pretty complex as is (a result of that is that the types for `createMutationKeys` are broken and...
Hey everyone, thank you for the suggestion in adding support for v5 new APIs, unfortunately I've been very busy lately without being able to put too much work into new...
@dvsweeney9 the change won't be reverted as this was always the expected behavior and the fix actually makes your system more type-safe now. If you were using it before, believe...