cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Relation on nodes with respect of time

oli
Graph Buddy


Hi,
May I ask that where could I find the tutorial about how to construct this architecture (especially the :NEXT relation)

Thanks
O

4 REPLIES 4

Are you sure you need this architecture? This is what's called a "Time Tree" -- but honestly this approach was more popular in Neo4j prior to the version where datetime types were introduced into Cypher that can now be indexed.

Mostly, people wanted these so they could for example match to a particular day, and then get all of the nodes linked to that day. That's not a thing people really do anymore, because they instead put a datestamp on every node, and then just match the nodes on a particular day.

You might read more about this approach here: GraphAware Neo4j TimeTree | GraphAware

Hi David, thanks for your answers and I actually I'm quite new to neo4j, just saw that this one is similar to my perspect (not aware of it's the old fashion). Actually, I'm doing a event sequence and there is a start time and end time related to this event, and what I would like to do is to link these events (or at least I could retrive in order these sequence to do embedding and then maybe do clustering based on these embeddings), therefore, I'm searching for some cases that similar to my work.

dkm1006
Node Clone

It’s in the Graph Academy course about Graph data modelling, too:

Thanks man, it looks awsome!