The client must not enforce the pagination. It is a server side issue

This commit is contained in:
luca.frosini 2023-10-31 15:33:03 +01:00
parent e1b1f23e81
commit ae136f9567
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public class BaseRequestInfo implements RequestInfo {
protected boolean includeContexts;
public BaseRequestInfo() {
this(DEFAULT_OFFSET, DEFAULT_LIMIT);
this(null, null);
}
public BaseRequestInfo(Integer offset, Integer limit) {