Offset paging
Offset paging is the default REST strategy. The endpoint accepts:limit: maximum number of records to return. The default is25and the default maximum is50.offset: zero-based number of records to skip. The default is0.
enableTotalCount is true, the connection also contains totalCount. Counting may add a database query, so enable it only when clients need it.
No paging
UsePagingStrategies.NONE to return all matching records as a JSON array:
Sorting
REST sorting is currently configured on the server throughdefaultSort; generated endpoints do not expose a client-controlled sort parameter.