0

我有一些用户类型的节点连接到根节点,就像这样

 var node = _graphClient.Create(new User{Name= "Bob}, new UserBelongsTo(_graphClient.RootNode));

我想执行一个查询,该查询将返回连接到根节点的所有用户。如何使用 neo4jClient 执行此操作?

4

1 回答 1

0

到目前为止,这是我想出的:

     var results = new CypherFluentQuery(_client)
           .Start("n", _client.RootNode)
           .Match(string.Format("(n)-[:{0}]-(x)", UserBelongsTo.TypeKey))
           .Return<Node<User>>("x")
           .Results;

注意:这是一个初学者的问题。

于 2012-10-07T08:31:55.733 回答