Hi all,
I have a dataset like this below -
id, seq,quotes
q1,1,a1
q1,2,a2
q1,3,a4
q1,4,b5
q2,1,a1
q2,2,a2
q2,3,a4
q2,4,b5
I want to create a graph with grouped relationship with nodes. like
(q1)-[:FIRST]->(seq:1)-[:quotes]->(a1)
(seq:1)-[:NEXT]->(se...