结合Neo4j,Spring Data和Neo4j Predicates

时间:2015-01-27 10:59:32

标签: java spring neo4j spring-data-neo4j

我找到了org.neo4j.helpers.Predicate界面。我使用Neo4j和Spring Data。 我有一个这样的存储库:

public interface RelationRepository extends GraphRepository<Relation> {
}

但是当我想打电话给relationRepository.findAll(new MyPredicate())时,它不起作用。没有为消耗谓词而创建的方法。有没有办法将它们组合在一起?