due to the documentation: community.telligent.com/.../list-search-result-rest-endpoint, the list search API works with PageSize/PageIndex params. Is it possible to have an equivalent of skip/take (or solr start/rows)?
due to the documentation: community.telligent.com/.../list-search-result-rest-endpoint, the list search API works with PageSize/PageIndex params. Is it possible to have an equivalent of skip/take (or solr start/rows)?
Page size and page index are essentially the same thing, where size is take and skip is page index. You can choose what page index(0 based) you would like and specify how many per page by setting the page size
in our case the search results should be shifted. ex:
page 1 : 3-13
page 2 : 13-23
...
it doesn't work with pageIndex and pageSize.
Unfortunately, this paging is not possible with the API as implemented.
ok, thank you
ok, thank you