Currently we store anything that a entity contains unless we explicitedly mark it as :store/secure.
However, this means that we are also storing relations to other entities that are not stored i.e. we store that there is a relation but not the value of the related entity.
For example :user/direction -> direction/uuid. None of the entities for direction/uuid are stored, just the link user -> direction
Currently we store anything that a entity contains unless we explicitedly mark it as
:store/secure
.However, this means that we are also storing relations to other entities that are not stored i.e. we store that there is a relation but not the value of the related entity.
For example
:user/direction
->direction/uuid
. None of the entities fordirection/uuid
are stored, just the linkuser
->direction