From 1dcf4cb55e8f9bf2390019e6a233816a86501f49 Mon Sep 17 00:00:00 2001 From: Lukas Kahwe Smith Date: Mon, 1 Sep 2025 09:25:12 +0200 Subject: [PATCH] pageSize also acts as the maximum for "limit" --- docs/reference/server-adapters/api-handlers/rest.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/server-adapters/api-handlers/rest.mdx b/docs/reference/server-adapters/api-handlers/rest.mdx index 867e7a43..76d098b7 100644 --- a/docs/reference/server-adapters/api-handlers/rest.mdx +++ b/docs/reference/server-adapters/api-handlers/rest.mdx @@ -82,7 +82,7 @@ The factory function accepts an options object with the following fields: - pageSize - Optional. A `number` field representing the default page size for listing resources and relationships. Defaults to 100. Set to Infinity to disable pagination. + Optional. A `number` field representing the default page size for listing resources and relationships. This value also determines the maximum `limit` value in an API call. Defaults to 100. Set to Infinity to disable pagination. - modelNameMapping