Search code examples
cypherspring-data-neo4jspring-data-neo4j-4

Spring Data Neo4j 4 Pageable with org.neo4j.ogm.session.Session.query


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 ?


Solution

  • 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.