gpt4 book ai didi

neo4j - Spring Data Neo4j 中的@Query shortestPath 返回类型

转载 作者:行者123 更新时间:2023-12-01 23:01:39 27 4
gpt4 key购买 nike

以下查询的返回类型是什么?我该如何使用它?我尝试了几种方法,例如 Path , Iterable<Path> ,和其他人,但我总是遇到某种异常(exception)。好像是LinkedHashMap但是我可以使用其他更方便的对象类型吗?

@Query( "START u1=node:User(key= {0}), u2=node:User(key = {1}) " +
"MATCH p = shortestPath(u1-[*]-u2) " +
"RETURN p")
public ??? findShortestPath(String u1, String u2);

我是否缺少任何依赖项?这是我唯一使用的:

<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j-rest</artifactId>
<version>2.1.0.RELEASE</version>
</dependency>

最佳答案

返回类型是EndResult<EntityPath<S, E> ,其中S为路径的起始节点,E为结束类型。

关于neo4j - Spring Data Neo4j 中的@Query shortestPath 返回类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13424372/

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