在Cypher中对neo4js lucene索引查询进行排序

时间:2012-04-13 12:32:21

标签: lucene neo4j cypher

如何在Web控制台的cypher查询中编写此示例?

hits = movies.query( "title", new QueryContext( "*" ).sort( "title" )

这就是我到目前为止所得到的。我该如何添加排序?

start a = node:movies("title:*") return a

1 个答案:

答案 0 :(得分:1)

你不能依赖于lucene的订购。如果您进行匹配或聚合,Cypher可能不会尊重它。

相反,我建议您使用Cypher的订购:

启动a = node:movies(“title:*”)通过a.title返回订单