Hi,
I have a graph database. The nodes in the graph suppose to be connected based on the order of the given property values. For example, the graph nodes can be:
(a{p:1}) (b{p:3}) (c{p:6}) (d{p:8})
then the connections suppose to be:
a--b--c--d
accor...