Change default page size

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-12-02 10:46:12 +01:00
parent 0d94dd8fc6
commit bce35c36f4

View File

@@ -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);