【发布时间】:2012-10-07 05:18:56
【问题描述】:
我有一个问题:
var results = new CypherFluentQuery(_client)
.Start("n", (NodeReference)0)
.Match(string.Format("(n)-[:{0}]--(x)", UserBelongsTo.TypeKey))
.Return<User>("x")
.Results;
这将返回与用户类型的查询匹配的所有节点。我将如何执行相同的查询,但返回每个匹配用户的 NodeReferences?
【问题讨论】:
标签: cypher neo4jclient nodereference