Question: Is it possible to have different types of relationships on the same Node? Or even multiple types of relationships on the same node.
I'm currently modeling out a new graphdb. I plan to have an "Employee" node with ID, Name and a "Country" node (amongst others) with: ID, Country.
I want to be able to have the following relationships: [lives in] and [works in] the [works in] can be multiple countries as employees travel to different places throughout the year.
Possible queries:
Match Employees living in Canada
or
Match Employees working in Spain
Possibility: When viewing a single Employee Node (John Smith) I might see the following relationships:
(Employee: John Smith) Lives In (Country:Canada) Works In (Country: Canada) or
(Employee: John Smith) Lives In (Country:Canada) Works In (Country: Spain), (Country: France)
I'm starting from scratch so I want to build my .csv right the first time.
For another time but for context:
I will also have the following nodes:
(Specialty)
(Language)
I will eventually want to query:
Match (employee) who lives in (country:canada) with (specialty:operations) who speaks (language:french)