ruby on rails - Neo4jrb - Cypher query



我有一个数据库,就像这个问题一样:

Neo4j - 基于关系属性查找两个节点之间的最短路径

CREATE (some_point_1:Point {title:'Some Point 1'})
CREATE (some_point_2:Point {title:'Some Point 2'})
CREATE (some_point_3:Point {title:'Some Point 3'})
CREATE (some_point_4:Point {title:'Some Point 4'})
CREATE (some_point_5:Point {title:'Some Point 5'})
CREATE (some_point_6:Point {title:'Some Point 6'})
CREATE (some_point_1)-[:distance {value:100}]->(some_point_2)
CREATE (some_point_2)-[:distance {value:150}]->(some_point_4)
CREATE (some_point_1)-[:distance {value:200}]->(some_point_3)
CREATE (some_point_3)-[:distance {value:300}]->(some_point_4)
CREATE (some_point_2)-[:distance {value:500}]->(some_point_5)
CREATE (some_point_4)-[:distance {value:300}]->(some_point_5)
CREATE (some_point_5)-[:distance {value:300}]->(some_point_6)
CREATE (some_point_6)-[:distance {value:300}]->(some_point_1)

现在我正在尝试执行这样的查询:(来自 Rails 应用程序)

MATCH (start:Point {title: 'Some Point 1'}), (end:Point {title: 'Some Point 5'})
MATCH p=(start)-[:distance*]->(end)
WITH p,reduce(s = 0, r IN rels(p) | s + r.value) AS dist
RETURN p, dist ORDER BY dist DESC

我正在尝试使用活动模型包装器进行类似的查询,但它不起作用:(

有没有办法从neo4jrb或neo4j-core执行纯Cypher查询?

是的,如果你想通过neo4j-core gem(使用neo4j gem时无论如何都需要),你可以轻松地直接做Cypher。

例如:n = Neo4j::Session.query("MATCH (n) RETURN n").first(假设您已将应用程序配置为与 Neo4j 服务器通信)。

如果您使用的是neo4j gem,则需要在应用程序中具有相应的ActiveNode(可能还有ActiveRel)模型,以便您可以执行查询。这个宝石几乎是 Neo4j 标准ActiveModel的良好包装:)

您有关于如何执行以下操作的更多信息: https://github.com/neo4jrb/neo4j-core/wiki/Queries您也可以从QueryProxy链移动到Neo4j::Core::Query。见 https://github.com/neo4jrb/neo4j/wiki/Search-and-Match#detailed-querying

MATCH (start:Point {title: 'some

point 1'}), (end:Point {title: 'some Point 5'})匹配 p=(开始)-[:d状态*]->(结束)WITH p,reduce(s = 0, r IN rels(p) | s + r.value) AS dist返回 p, 区 按区顺序

吉列尔莫是绝对正确的,但我想我会尝试一些代码:

Point.where(title: 'Some Point 1').connected(:end, :rels, rel_length: :any).where(title: 'Some Point 5')
   .query.with(:p, dist: 'reduce(s = 0, r IN :rels | s + r.value)')
   .return(:p, :dist)
   .order(disc: :desc)

这将为您提供一个可以迭代或调用to_a Enumerable。 或者你可以直接返回一个二维数组:

   .order(disc: :desc)
   .pluck(:p, :dist)

正如吉列尔莫所说,这假设了一个ActiveNode模型。 类似的东西;

class Point
  include Neo4j::ActiveNode
  property :title
  has_many :out, :connected, type: :distance, model_class: :Point
end

协会的名称可能是也可能不是你想要的,我只是猜测。

吉列尔莫是绝对正确的,但我想我会尝试一些代码:

Point.where(title: 'Some Point 1').connected(:end, :rels, rel_length: :any).where(title: 'Some Point 5')
   .query.with(:p, dist: 'reduce(s = 0, r IN :rels | s + r.value)')
   .return(:p, :dist)
   .order(disc: :desc)

这将为您提供一个可以迭代或调用to_a Enumerable。 或者你可以直接返回一个二维数组:

   .order(disc: :desc)
   .pluck(:p, :dist)

正如吉列尔莫所说,这假设了一个ActiveNode模型。 类似的东西;

class Point
  include Neo4j::ActiveNode
  property :title
  has_many :out, :connected, type: :distance, model_class: :Point
end

协会的名称可能是也可能不是你想要的,我只是猜测。

相关内容

  • 没有找到相关文章

最新更新