Currently Pagination isn't supported in SDN4 (Ref: Paging and sorting in Spring Data Neo4j 4)
It's possible to specify the SKIP and LIMIT clauses ourselves to retrieve parts of the results, however for our system we also need the getTotalPages(), isFirst() and isLast() values from the Page returned when performing a custom paging query.
Is there an alternative way for us to retrieve these values using SDN4 / OGM? Alternatively, are there any recommendations / references to code that can be provided for us to implement this ourselves (perhaps in the construction of the Page object)?
Thanks!