I have multiple entities and properties of the following kind:
- Linkedin company
- name
- phone
- Facebook
- facebook_url
- name
- website_url
- phone
- website
- linkedin_url
- facebook_url
- phone
Not all entities have all their properties filled.
I want to create a unified dataset that will be based on matched corresponding values between all the entities
I'm considering using a graphdb, neo4j in particular
But if each entity is a node, then I will have to create each relationship by programaticcaly checking the equality of each property to the corresponding property in all other entities.
I also consider using some kind of an sql join, but then it seems like maintaining it when the data model widens will be hard.
What is the write approach to solve this problem?
Which technology is best for this?