我是RNeo4j的新手。我正在运行以下代码。
library(RNeo4j)
graph = startGraph("http://localhost:7474/db/data", username='neo4j', password='xxxxx2')
addConstraint(graph, "Person", "name")
但是,我在addConstraint(图形,“人物”,“名称”)之后收到错误 这是错误代码:
Error in httr::content(response)$errors :
$ operator is invalid for atomic vectors
答案 0 :(得分:2)
要给出完整答案:
您收到此错误是因为您传递了一个末尾没有正斜杠的网址。我的错误处理没有为损坏的URL提供正确的错误消息。这已在https://github.com/nicolewhite/RNeo4j/issues/30中修复。
如果省略它,我还添加了几行来添加正斜杠:https://github.com/nicolewhite/RNeo4j/commit/96e1b05a68a44cf2d9224a28bfe40a86f8fcebfb。