Is it possible in Spring Data Neo4j 4 to use Pageable
with org.neo4j.ogm.session.Session
like session.query(characteristicCypher, parameters);
If so, could you please show an example ?
Is it possible in Spring Data Neo4j 4 to use Pageable
with org.neo4j.ogm.session.Session
like session.query(characteristicCypher, parameters);
If so, could you please show an example ?
Copyright © 2021 Jogjafile Inc.
No.
org.springframework.data.domain.Pageable
is not compatible with the OGMSession
.You can use the OGM native
org.neo4j.ogm.cypher.query.Pagination
withSession
though. You can see examples of how to use that in the OGM test source.