在Cypher中对集合进行排序,并按照与集合相同的顺序对结果进行排序

时间:2013-05-09 16:30:08

标签: neo4j cypher

我是Cypher的新手,我正在尝试以下方法。我有一个关系具有数字属性的图表。我想写一个像这样的查询:

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

这不起作用,因为在这种情况下r是一个集合。

1 个答案:

答案 0 :(得分:0)

目前很难做到这一点。我一直想要实现一些功能来处理它 - 我的想法就在这里:

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

如果您希望看到它发生,请对此问题发表评论。