File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments