1

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

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

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

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

1 回答 1

1

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

相反,我建议您使用 Cypher 的排序:

start a = node:movies("title:*") 按 a.title 返回一个订单

于 2012-04-13T12:52:25.060 回答