如何在 neo4j.rb、Rails 中使用顺序和 find_each?

How can I use order and find_each in neo4j.rb, Rails?

我在Rails中使用Neo4j.rb。 我正在尝试这段代码。

 Person.all.order("n.score").find_each

Person.order(score: :asc).find_each

但是,没有人点单。

目前 gem 不支持。可以看到here顺序是根据指定的属性固定的

那个link是来自neo4j-core,顺便说一句。您正在为 ActiveNode 使用 this or this。这些方法实际上延续了主键的硬编码作为排序。

也就是说,这可能没有必要。当我构建 find_each / find_in_batches 功能时,我发现 Cypher 查询可能比 SQL 查询复杂得多,因为您不只是指定一个列。我当然愿意接受其他想法