Given a series of unique sequential nodes of certain types: LogIn->UpdateProfile , LogIn->AddToCart->CheckOut
cypher example:
CREATE (e1:Event {type: 'LogIn', uuid: '...'}),
(e2:Event {type: 'UpdateProfile', uuid: '...'}),
(e3:Event {type: 'LogIn',...