此查询有什么问题
var result = Neo4jController.m_graphClient.Cypher
.Match("(A:" + objWorld.getLabel() + " { Name : {Name} })")
.Create("(A)-[R:" + Rel_World.world_country + "]->(B:" + objcountry.getLabel() + "{ objcountry }")
.WithParams(new
{
Name = objWorld.Name,
objcountry = objcountry
})
.Return((B, R) => new
{
CountryCount = B.Count(),
RelationCount = R.Count()
})
.Results
.Single();
我收到此错误 Message = SyntaxException:输入'R'无效:预期的空格,注释或')'(第3行,第1列) “RETURN count(B)AS CountryCount,count(R)AS RelationCount”
我正在使用Neo4jclient与neo4j进行交互
答案 0 :(得分:0)
忘记在查询字段中添加')'。