We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d0438a commit c47d249Copy full SHA for c47d249
1 file changed
src/bubble_data_api_client/client/raw_client.py
@@ -2,6 +2,14 @@
2
3
Use RawClient when you need direct control over API calls without ORM overhead.
4
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
13
"""
14
15
from __future__ import annotations
0 commit comments