Open
Description
Setup information
hikaku version: 2.0.0-SNAPSHOT
implementation converter: SpringConverter
Describe the bug
Spring data supports the idea of Pageable. A pageable is an object build by request parameter, supporting page, size and sort (parameter names are changeable). These parameters might be part of an api, but are not explizit mapped to query parameter. The documentation says "Query Parameter based on an object" are not supported, but I think a Pageable should be mentioned explizitly.
Expected behavior
Add support for Pageable or add a note that Pageable are currently not supported in hikaku.
Code samples:
Can you provide specifications or code snippets?
public ResponseEntity<Person> getPersons(
@RequestParam(name = "language", required = false) String language,
@PageableDefault Pageable pageable) {
...
}