Spring Data Neo4j 4可与org.neo4j.ogm.session.Session.query一起分页

时间:2017-01-09 13:25:00

标签: cypher spring-data-neo4j spring-data-neo4j-4

Spring Data Neo4j 4是否有可能Pageable使用org.neo4j.ogm.session.Session session.query(characteristicCypher, parameters);

如果是这样,你能举个例子吗?

1 个答案:

答案 0 :(得分:1)

没有。 org.springframework.data.domain.Pageable与OGM Session不兼容。

您可以将OGM原生org.neo4j.ogm.cypher.query.PaginationSession一起使用。您可以在OGM test source中看到如何使用它的示例。