I have a SpringBoot app and an interface that extends from CrudRepository
@Query("select cps from HotelPriceSummary cps where cps.price > 5 and cps.profilePercentage >= 70 ")
List<HotelPriceSummary> findMine(Pageable pageable);
I would like to know if it is possible to get the total number of pages from the object Pageable