Using the Entity api, if I call get on a ref attribute I expect to get the referenced Entity (or a set of the same), but seemingly when the ref attribute points to an Entity with a db/ident I’m just getting a keyword (the ident) instead of an Entity object.
This appears at odds with the Entity documentation though?
If an attributes points to another entity through a cardinality-many attribute, get will return a Set of entity instances.
Presumably, I could call db on the original entity and then d/entity again on the keyword/ident, but is that the suggested method?