-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Labels
enhancementNew feature or requestNew feature or request
Description
How would I come over that limitation:
public List<Owner> getAllOwners() {
Pageable pageable = PageRequest.of(0, 100);
Page<Owner> ownerPage = ownerRepository.findAll(pageable);
return ownerPage.getContent();
}
?
Normally I would like to evaluate the whole dataset. Couldn't I handover the Pageable-Object?
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request