Neo4j - storing relation of entities - how to
Posted by k_zoltan on June 25, 2014 at 12:15pm
Use case:
We are working on a project where entities are cross linked. My question is how would it be the best to store these relations.
Entities:
-person
-company
-skill
-job
Relations:
Friends:
person < - > person
CV:
person < - > skill
Working at:
person < - > company
Jobs available:
job < - > company
Skills needed for a job:
job < - > skill
Problem/Motivation
to find the best matching job (that require skills that you have) from the companies where your friends and friends-of-friends work at.
