Hello,
Using Cypher language only, based on a liste of strings e.g [ "A", "B", "C" ], I want to create the following path:
( n1:Test {ps: "A"}) -[:NEXT]-> (n2:Test {ps: "B"}) -[:NEXT]-> (n3:Test {ps:"C"})
The list would be of any length. Nodes and...