After doing all of the beginner courses and a few graph data science courses I still cannot answer this question:
I would like to create process models based on event data.
Each node is an event (containing multiple properties - ONE important one is the timestamp) that must be ordered in a sequence according to the timestamp property within a timeframe of e.g. one day.
I would like to have all the events of one day ordered according to their timestamp and create the relationship "Directly_Follows" in between each node.
Ideally, I would also like to have a conditional if the node contains a property - event_type: 'start'/'end' to stop the DF graph. But for now let us just try to order the nodes according to their timestamp. It can be seen in the image below how I want the nodes to look after my import.
Thank you for your help!