Patch Changes
-
Collections must have a getId function & use an id for update/delete operators (#134)
-
the select operator is not optional on a query, it will default to returning the whole row for a basic query, and a namespaced object when there are joins (#148)
-
the
keyBy
query operator has been removed, keying withing the query pipeline is now automatic (#144) -
update d2ts to to latest version that improves hashing performance (#136)
-
Switch to Collection options factories instead of extending the Collection class (#145)
This refactors
ElectricCollection
andQueryCollection
into factory functions (electricCollectionOptions
andqueryCollectionOptions
) that return standardCollectionConfig
objects and utility functions. Also adds acreateCollection
function to standardize collection instantiation.