我使用批量插入使用 RESY API 添加节点我知道如何在 2.0 之前执行此操作,但现在我开始使用标记节点,但我无法让它工作。我找不到如何将标签添加到节点。
文档不是很清楚(对我来说)。 http://docs.neo4j.org/chunked/2.0.0-M03/rest-api-node-labels.html
这是发送到 API 的 json:
测试1:
[{"method":"POST",
"to":"/node",
"body":{"name":"A"},"id":0},
{"method":"POST",
"to":"{0}/labels",
"body":{"label":"user"}
}]
测试2:
[{"method":"POST",
"to":"/node",
"body":{"name":"A"},"id":0},
{"method":"POST",
"to":"/node/{0}/labels",
"body":{"label":"user"}
}]
测试3:
[{"method":"POST",
"to":"/node",
"body":{"name":"A"},"id":0},
"label":"user"
}]
提前谢谢史蒂文