Spring Data Neo4j 4是否有可能Pageable
使用org.neo4j.ogm.session.Session
session.query(characteristicCypher, parameters);
如果是这样,你能举个例子吗?
答案 0 :(得分:1)
没有。 org.springframework.data.domain.Pageable
与OGM Session
不兼容。
您可以将OGM原生org.neo4j.ogm.cypher.query.Pagination
与Session
一起使用。您可以在OGM test source中看到如何使用它的示例。