Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Web 控制台的密码查询中编写此示例?
hits = movies.query( "title", new QueryContext( "*" ).sort( "title" )
这就是我到目前为止所得到的。如何添加排序?
start a = node:movies("title:*") return a
你不能依赖 lucene 的顺序。如果您进行匹配或聚合,Cypher 可能不会尊重它。
相反,我建议您使用 Cypher 的排序:
start a = node:movies("title:*") 按 a.title 返回一个订单