Skip to content

Commit c47d249

Browse files
committed
document limitation in the bubble data api for size of the list fields
1 parent 9d0438a commit c47d249

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/bubble_data_api_client/client/raw_client.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
33
Use RawClient when you need direct control over API calls without ORM overhead.
44
For most use cases, prefer BubbleModel which provides a higher-level interface.
5+
6+
Known limitations:
7+
Apps on the main (shared) cluster limit list fields sent via the Data API
8+
to 200 items. This applies to create, update, and replace operations. The
9+
limit can be raised up to 10,000 on dedicated instances. PATCH replaces the
10+
entire list field value (no append operation exists), so chunking cannot work
11+
around this limit.
12+
https://manual.bubble.io/help-guides/bubble-for-enterprise/hosting-and-infrastructure/dedicated-instance/customizable-options
513
"""
614

715
from __future__ import annotations

0 commit comments

Comments
 (0)