Hi,When adding entities to a collection, did you do the following:Get
the latest entity HREFThis will prevent adding a deleted or an outdated
entityBefore adding the entity to a collection, get the current
collection's contentElement first and append (or prepend) the new entity
to the listThis will prevent deleting any existing entities in the list,
users are in charge of keeping the persistence of the dataThis "unknown"
entity might've been a deleted entity that you are trying to reference.
If ...