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 ?
No. org.springframework.data.domain.Pageable
is not compatible with the OGM Session
.
You can use the OGM native org.neo4j.ogm.cypher.query.Pagination
with Session
though. You can see examples of how to use that in the OGM test source.