如何指定 Spring 数据 neo4j 的查询深度?
How to specify query depth of Spring data neo4j?
Spring Data Neo4j 提供了指定查询深度的方法:
@Depth(value = 2)
List<KNode> findByName(String name);
但是它是硬编码的,有没有其他方法可以将深度指定为方法的参数,就像:
List<KNode> findByName(String name, int depth);
谢谢。
您可以尝试注释参数。
List<KNode> findByName(String name, @Depth int depth);
在此处查找更多信息:https://docs.spring.io/spring-data/neo4j/docs/current/reference/html/#reference_derived-queries
Spring Data Neo4j 提供了指定查询深度的方法:
@Depth(value = 2)
List<KNode> findByName(String name);
但是它是硬编码的,有没有其他方法可以将深度指定为方法的参数,就像:
List<KNode> findByName(String name, int depth);
谢谢。
您可以尝试注释参数。
List<KNode> findByName(String name, @Depth int depth);
在此处查找更多信息:https://docs.spring.io/spring-data/neo4j/docs/current/reference/html/#reference_derived-queries