neo4j - Sorting a collection in Cypher and ordering results in the same order as the collection -


i'm new cypher , i'm trying following. have graph relationships have numeric property. want write query like:

start n=node(*) match n-[r *1..3]->m return n,m, r order r.myproperty 

this doesn't work since r in case collection.

this hard @ moment. i've been wanting implement functionality handle it--my idea here:

https://github.com/neo4j/neo4j/issues/30

please comment on issue if you'd see happen.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -