如何在Web控制台的cypher查询中编写此示例?
hits = movies.query( "title", new QueryContext( "*" ).sort( "title" )
这就是我到目前为止所得到的。我该如何添加排序?
start a = node:movies("title:*") return a
答案 0 :(得分:1)
你不能依赖于lucene的订购。如果您进行匹配或聚合,Cypher可能不会尊重它。
相反,我建议您使用Cypher的订购:
启动a = node:movies(“title:*”)通过a.title返回订单