I would like to combine paths from multiple match query. Consider a query
MATCH path_1 = (t1:Type1)-[r1:]->(t2:Type2)
MATCH path_2 = (t2)-[r2]->(t3:Type3)
MATCH path_3 = (t1)-[r3]->(t4:Type4)
RETURN path_1,path_2,path_3
- How to combine all these three paths into one as like
apoc.path.combine(path_1,path_2) as path
, But it just combines two paths. I want to combine more than three paths. - How does Neo4j browser able to render a graph with the output given by above query? I can use the same logic to generate paths