·
160 commits
to main
since this release
Patch Changes
-
#260
957493f
Thanks @trevor-scheer! - Fix issue with KeyvAdapter whereKeyv.getMany
returnsundefined
,
causingKeyvAdapter
to violate theDataLoader
contract.DataLoader always expects a
Promise<Array<V>>
having the same length
as thekeys
that were given to it. This problem stems from a
shortcoming of theKeyv
typings, since it doesn't declare that a
get([...keys])
can return a singularundefined
(but it can in
the case of errors /Store.getMany
can return a singularundefined
).