gpt4 book ai didi

neo4j UNWIND CREATE 预期 n 是一张 map

转载 作者:行者123 更新时间:2023-12-02 04:45:08 27 4
gpt4 key购买 nike

在 neo4j 2.3 中使用 UNWIND 创建多个节点我遇到了“Expected n to be a map”。在 neo4j-shell 中,处理单个 map 是可行的:

neo4j-sh (?)$ export key={name:'foo'}
neo4j-sh (?)$ create (n:test) set n={key};
Nodes created: 1

但是在数组上使用 UNWIND 我得到:

neo4j-sh (?)$ export keys=[{name:'foo'}]
neo4j-sh (?)$ unwind {keys} as key create (n:test) set n=key;
WARNING: Expected n to be a map, but it was :`{"name":"foo"}`

当我通过 REST 调用时也会发生同样的情况。我猜这与 neo4j 处理参数有关。正确的喂食方法是什么?

最佳答案

是的,它可能是参数。这有点奇怪。如果您尝试这样做会怎样:

WITH {keys} AS keys
UNWIND keys as key
CREATE (n:test) SET n=key;

关于neo4j UNWIND CREATE 预期 n 是一张 map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33694709/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com