如何使用密码查询neo4j节点的时间范围?

时间:2017-05-17 03:49:28

标签: ruby neo4j cypher neography

我有以下内容:

@neo.execute_query("match (node) where node.value = 'Rachel' return node.uuid, node.epoch_utc_i, node.value")

 => {"columns"=>["node.uuid", "node.epoch_utc_i", "node.value"], "data"=>[["87f7d4c7-c161-4ba2-bce6-8c3c5104f60c", 1493774726, "Rachel"], ["23574509-3d67-4783-a00a-66a2b49b5cbd", 1493968856, "Rachel"], ["e7f01367-baa6-431b-8760-1979c215d777", 1494035989, "Rachel"], ["4cc0f450-a1c4-4992-85c1-9bcb4d759d6a", 1494047641, "Rachel"], ["e3a83a43-3b0f-4a7f-944b-4f582fb47b72", 1494183024, "Rachel"], ["1d8be261-e788-449c-9fa1-9db82816fa37", 1494531971, "Rachel"]]}

但是,我无法使用WHERE仅返回今天和昨天之间epoch_utc_i时间的人,例如:

2.2.1 :045 > yesterday = Chronic.parse('1 day ago').to_i
 => 1494906466 

2.2.1 :046 > @neo.execute_query("match (node) where node.value Contains 'Rachel' AND node.epoch_utc_i > yesterday return node.uuid, node.epoch_utc_i, node.value")
Neography::SyntaxException: NeographyError: 
--message: Variable `yesterday` not defined (line 1, column 72 (offset: 71))

编辑:尝试将值传递给查询

@neo.execute_query("match (node)-[:gratefulFor]->(node2) where node.bot_client_id = 'aiaas-1409611358153-user-0149' AND node2.epoch_utc_i > $yesterday return node.bot_client_id, node2.epoch_utc_i, node2.value", {:yesterday => yesterday})

Neography::SyntaxException: NeographyError: 
--message: Variable `$yesterday` not defined (line 1, column 121 (offset: 120))

--request: {:path=>"/db/data/cypher", :body=>"{\"query\":\"match (node)-[:gratefulFor]->(node2) where node.bot_client_id = 'aiaas-1409611358153-user-0149' AND node2.epoch_utc_i > $yesterday return node.bot_client_id, node2.epoch_utc_i, node2.value\",\"params\":{\"yesterday\":1494908349}}"},

问题:

我如何在上面的代码中实现,只有那些纪元时间大于昨天的纪元时间的节点?

1 个答案:

答案 0 :(得分:0)

您必须将变量传递给查询。使用$yesterday{yesterday}(旧表示法)将参数传递给Cypher查询。查询如下:

MATCH (node) WHERE node.value 
CONTAINS 'Rachel' AND node.epoch_utc_i > {yesterday} 
RETURN node.uuid, node.epoch_utc_i, node.value"

查询执行将传递昨天变量并插入到上面的查询中。

@neo.execute_query(query, {:yesterday => yesterday})