我第一次尝试在 RStudio 中使用 Neo4j。我只是在尝试本教程https://github.com/nicolewhite/RNeo4j
但是当我尝试这样的查询时:
nicole = createNode(graph, "Person", name="Nicole", age=24)
我收到了这个错误:
Client error: (405) Method Not Allowed
有没有办法解决这个问题?提前感谢您的宝贵时间。
我第一次尝试在 RStudio 中使用 Neo4j。我只是在尝试本教程https://github.com/nicolewhite/RNeo4j
但是当我尝试这样的查询时:
nicole = createNode(graph, "Person", name="Nicole", age=24)
我收到了这个错误:
Client error: (405) Method Not Allowed
有没有办法解决这个问题?提前感谢您的宝贵时间。
如果您不小心在startGraph()
通话中遗漏了某些信息,则可能会发生错误。确保您/db/data/
在图表网址的末尾有。(如果不是这种情况,请发布您startGraph
使用的命令)。
/db/data
library(RNeo4j)
graph = startGraph("http://localhost:7474/db/data/")
nicole = createNode(graph, "Person", name="Nicole", age=24)
nicole
# Person
#
# $name
# [1] "Nicole"
#
# $age
# [1] 24
graph = startGraph("http://localhost:7474")
nicole = createNode(graph, "Person", name="Nicole", age=24)
Error: Client error: (405) Method Not Allowed