Hey! π
I have a question on keechma-entitydb
In this example https://github.com/keechma/keechma-entitydb#querying-relationships
If I want to add to this entity a new link later
{:id 1
:title "Note #1"
:links [{:id 1
:url "<http://www.google.com>"}
{:id 2
:url "<http://www.yahoo.com>"}]}
Should I insert the new again including the vector of 3 links (2 old, and the new one), or is there a way to prepend/append directly?@ferossgp the expectation is to insert a vector of 3 links. Entitydb will replace whatever is on the :links
key with a new collection. We donβt have a prepend / append functionality atm, but it could probably be built pretty easily. Can you open an issue for that on the repo?