我对 Neo4j 和 Neo4jClient 还很陌生,我刚刚开始编写一些流利的 Cypher 来创建关系,如果它不存在的话。我正在运行 Neo4j 2.0 beta,因为 Neo4jClient wiki 中的示例似乎适用于 2.0。
当我运行它时,我收到以下错误:
SyntaxException: Parenthesis are required to identify nodes in patterns
"CREATE UNIQUE app-[:APP_OF]->{root}"
^
^ 指向 app 后面的连字符。
如果有人能告诉我我做错了什么,我将不胜感激。
这是创建应用程序的两个密码查询,如果它不存在,然后创建关系,如果它不存在。
// Create App
client.Cypher
.Merge("(app:App {Id: {id}})")
.OnCreate("app")
.Set("app = {newApp}")
.WithParams(new { id = a.Id, newApp = a })
.ExecuteWithoutResults();
// Create Relationship
client.Cypher
.Match("(app:App)")
.Where((App app) => app.Id == a.Id)
.CreateUnique("app-[:APP_OF]->{root}") // this is the error line
.WithParam("root", client.RootNode)
.ExecuteWithoutResults();
我想知道是否有一种方法也可以将这些组合成一个查询?
我应该打扰连接到根节点,还是 App 节点可以浮动。我知道不再需要启动节点,所以不需要连接到根节点吗?不过,我仍然需要此代码来处理其他关系。
非常感谢您的帮助 :)
编辑:这是我从https://github.com/Readify/Neo4jClient/wiki/cypher-examples遵循的示例
graphClient.Cypher
.Match("(user1:User)", "(user2:User)")
.Where((User user1) => user1.Id == 123)
.AndWhere((User user2) => user2.Id == 456)
.CreateUnique("user1-[:FRIENDS_WITH]->user2")
.ExecuteWithoutResults();