gpt4 book ai didi

cypher - Neo4jClient 从密码查询返回 NodeReference

转载 作者:行者123 更新时间:2023-12-01 01:14:38 25 4
gpt4 key购买 nike

我有一个疑问:

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

这将返回与用户类型的查询匹配的所有节点。我将如何执行相同的查询,但为每个匹配的用户返回 NodeReferences?

最佳答案

用:

.Return<Node<User>>("x")

它将返回 Node其中有一个 Reference属性(property)。

关于cypher - Neo4jClient 从密码查询返回 NodeReference,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12766313/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com