You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To paginate results returned by the Entity Service API, you can use the `start` and `limit` parameters:
67
+
Results can be paginated using 2 different strategies (see [REST API documentation](/dev-docs/api/rest/sort-pagination#pagination) for more details):
68
+
69
+
- pagination by page, when defining the `page` and `pageSize` parameters,
70
+
- and pagination by offset, when defining the `start` and `limit` parameters.
71
+
72
+
2 different functions can be used to paginate results with the Entity Service API, and accept different pagination strategies: `findMany()` and `findPage()`
0 commit comments