使用最新的Neo4jClient访问Neo4j数据库我无法成功运行以下Cypher查询:
var connections = _graphClient.Cypher
.StartWithNodeIndexLookup("n", "indexName", "'id:*'")
.Match("c=(n)-[:RELATIONSHIP_TYPE]-()")
.Return<MyRelationship>("c")
.Skip(5)
.Limit(10)
.Results;
这会返回零结果。但是它会生成以下查询:
START n=node:indexName('id:*') MATCH c=(n)-[:RELATIONSHIP_TYPE]-() RETURN c SKIP 5 LIMIT 10
当我直接通过Neo4j的管理板运行时,我得到了正确的结果集。
我错过了什么?任何帮助将不胜感激。
答案 0 :(得分:1)
我认为这是因为你的索引中有单引号
var connections = _graphClient.Cypher
.StartWithNodeIndexLookup("n", "indexName", "id:*") //<-- remove the single quotes
.Match("c=(n)-[:RELATIONSHIP_TYPE]-()")
.Return<MyRelationship>("c")
.Skip(5)
.Limit(10)
.Results;
如果您再次遇到此类问题,最简单的方法是使用StartWithNodeIndexLookup
切换Start
调用并使用已知的节点引用来检查错误发生的位置。