From bce35c36f415130e051b84569a1bfe72aa2aecef Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Tue, 2 Dec 2025 10:46:12 +0100 Subject: [PATCH] Change default page size Signed-off-by: Bryan Frimin --- packages/n8n-node/nodes/Probo/GenericFunctions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/n8n-node/nodes/Probo/GenericFunctions.ts b/packages/n8n-node/nodes/Probo/GenericFunctions.ts index d0e850ad5..8c95cddae 100644 --- a/packages/n8n-node/nodes/Probo/GenericFunctions.ts +++ b/packages/n8n-node/nodes/Probo/GenericFunctions.ts @@ -51,7 +51,7 @@ export async function proboApiRequestAllItems( const items: any[] = []; let hasNextPage = true; let cursor: string | null = null; - const pageSize = 50; + const pageSize = 100; while (hasNextPage) { const currentLimit = returnAll ? pageSize : Math.min(pageSize, limit - items.length);