Skip to content

Commit 9856572

Browse files
committed
limit-filter
1 parent 38ea7cf commit 9856572

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/modules/entities.types.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ export interface EntityHandler {
3434
* Retrieves all records of this type with support for sorting,
3535
* pagination, and field selection.
3636
*
37+
* **Note:** The maximum limit is 5,000 items per request.
38+
*
3739
* @param sort - Sort parameter, such as `'-created_date'` for descending. Defaults to `'-created_date'`.
3840
* @param limit - Maximum number of results to return. Defaults to `50`.
3941
* @param skip - Number of results to skip for pagination. Defaults to `0`.
@@ -78,6 +80,8 @@ export interface EntityHandler {
7880
* Retrieves records that match specific criteria with support for
7981
* sorting, pagination, and field selection.
8082
*
83+
* **Note:** The maximum limit is 5,000 items per request.
84+
*
8185
* @param query - Query object with field-value pairs. Each key should be a field name
8286
* from your entity schema, and each value is the criteria to match. Records matching all
8387
* specified criteria are returned. Field names are case-sensitive.

0 commit comments

Comments
 (0)