Client error: (405) Method Not Allowed while trying to use Neo4j syntax in R

Client error: (405) Method Not Allowed while trying to use Neo4j syntax in R

我第一次尝试在 RStudio 中使用 Neo4j。我只是在尝试本教程 https://github.com/nicolewhite/RNeo4j

但是当我尝试这样的查询时:

nicole = createNode(graph, "Person", name="Nicole", age=24)

我收到这个错误:

Client error: (405) Method Not Allowed

有什么办法可以解决这个问题吗?预先感谢您的宝贵时间。

如果您在 startGraph() 通话中不小心遗漏了一些信息,就会发生错误。确保图表 url 的末尾有 /db/data/。 (如果不是这种情况,请 post 您使用的 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