When I use the extension of spring data Jpa, the sort with Pageable does not work. This is my exp: ``` @GET @Produces("application/json") public List<Fruit> findAll() { return fruitRepository.findAll(PageRequest.of(0,3, Sort.by(Sort.Direction.DESC, "id"))).getContent(); } ``` the method sort does not work as if it does not exist