From 24f324de46a9efaa789887ab48e1223ae3d23f0a Mon Sep 17 00:00:00 2001 From: Juan Pablo Date: Sat, 14 Oct 2023 15:46:27 -0300 Subject: [PATCH] call_load_page_chunk data limit to 100 --- notion/store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notion/store.py b/notion/store.py index 08aa37d8..b284d1f2 100644 --- a/notion/store.py +++ b/notion/store.py @@ -284,7 +284,7 @@ def call_load_page_chunk(self, page_id): data = { "pageId": page_id, - "limit": 100000, + "limit": 100, "cursor": {"stack": []}, "chunkNumber": 0, "verticalColumns": False,