1package dev.rafex.ether.http.core.query;
31public record
QuerySpec(RsqlNode filter,
int limit,
int offset, List<Sort> sorts) {
33 public static final int DEFAULT_LIMIT = 20;
34 public static final int DEFAULT_OFFSET = 0;
37 sorts = sorts ==
null ? List.of() : List.copyOf(sorts);
record QuerySpec(RsqlNode filter, int limit, int offset, List< Sort > sorts)