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.
尝试使用 Neography v0.0.23 执行参数化 Cypher 查询。
即使非参数化版本有效:
Neo.execute_query("开始 n=node(3) 返回 n") => {“数据”=>[[{....
参数化版本不起作用:
Neo.execute_query("开始 n=node(id) 返回 n", {:id => 3}) => 无
尝试使用“start n=node({id}) return n”和大括号中的参数名称。