Skip to content

Only 100 Owners? #13

@khauser

Description

@khauser

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

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions