在 spring data neo4j (3.3.1) 的早期版本中,我能够在我的数据库中查询路径并返回它们,Iterable<EntityPath<S,E>>
如下所示:
public interface ArgumentNodeRepository extends GraphRepository<ArgumentNode> {
@Query("START t=node({0}), r=node({1}) MATCH p=t<-[:SUPPORTED_BY|INTERPRETS*0..]-r RETURN p")
Iterable<EntityPath<ArgumentNode, ArgumentNode>> getPaths(long childId, long rootId);
}
我正在尝试迁移到 4.0.0 并且 EntityPath 类似乎已经消失了。我在迁移指南中没有看到任何提及 EntityPath 的内容。我的新返回类型是什么?