我找到了org.neo4j.helpers.Predicate
界面。我使用Neo4j和Spring Data。
我有一个这样的存储库:
public interface RelationRepository extends GraphRepository<Relation> {
}
但是当我想打电话给relationRepository.findAll(new MyPredicate())
时,它不起作用。没有为消耗谓词而创建的方法。有没有办法将它们组合在一起?
答案 0 :(得分:1)
您可以将QueryDSL谓词与QueryDslRepository一起使用。
或测试: