Hi all,
I am looking at using Neo4j for a project. The only thing is that the domain that needs to be modeled not only has nodes and relationship, but these changes over time.
It is for a transport system. Without going into much details below is an overview of the model and example of the time dependent relationship.
So basically you have a company with a fleet of cars and buses together with drivers. These cars and buses have drivers, and these cars and buses are used to transport people or goods to specific destinations.
The above domain can be mapped into a GraphDB. The only problem now is the relationship changes. In the sense that a particular driver can be driver one car now, and in a couple of hours is driving another car. And a particular bus can be heading to one destination now, and in a couple days will head to another.
And the application has a strict requirement that mandates it needs to support snapshot of these relationship. Basically it means it should make it possible to show at a particular point in time, who are the drivers, what cars/buses are they driving, and where were day heading.
Basically it looks like there is a time-series aspect to the domain. Question is, any advice or suggestions or recommendations regarding how such can be modeled in Neo4j?