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

时间:2012-11-16 21:03:05

标签: neo4j shortest-path cypher spring-data-neo4j spring-data-graph

以下查询的返回类型是什么以及如何使用它?我试过了PathIterable<Path>和其他一些事情,但我总是遇到某种例外情况。它似乎是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>

1 个答案:

答案 0 :(得分:2)

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