-
Hi @wpaven But my question here is different, it is regarding DHCCE. When I use an entity property with a type (related entity) , after we do the matching and merging, the related entites don't show up on the graph (network) But when I follow your example and do relation between entities they do show up, and I am wondering here what is the best practices Can I please ask you to share the JSON document of HR360 example ? I would like to see how the entities showup on a single json document when you do the matching merging Rad |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
So, relationships in MarkLogic for entities today are more like relational type relationships. Behind the scenes, a tabular view for each entity is created by default. Hope this helps, |
Beta Was this translation helpful? Give feedback.
So, relationships in MarkLogic for entities today are more like relational type relationships. Behind the scenes, a tabular view for each entity is created by default.
Let's say you create a Customer entity. Behind the scenes a Customer.entitity.json entity descriptor is created. A TDE for each entity is auto-generated by the hub based on this and if you go to query console after harmonization (assuming user has TDE-view, TDE-admin role) you can query the Customer "table".
When you use properties to define the relationship inside the entity descriptor, this is more like a relationship between the "tables". It's not a named relationship, as you're seeing in the graph view in Connect.
In Co…