Is it possible to move nodes ordered by a property defined by relationships in the Java API?
Source node *--- 4 ---> * Node 1
|
+--- 3 ---> * Node 2
|
+--- 2 ---> * Node 3
|
'--- 1 ---> * Node 4
Where * are nodes, and the numbers between - are relationship properties. Thus, the above will give nodes 4, 3, 2, and 1.
source
share