Current Setup & Issue Context:
We have an orders collection with an M2O relation to order_items. Users upload Excel files (~2500 lines) containing order items. A flow processes this:
- Extracts/parses Excel into 154 unique
order_items - Updates single
orderrecord with fullorder_itemsM2O array (visible complete in operation preview/logs)
The Problem:
“Update Data” operation receives full 154-item array but silently truncates based on payload complexity:
- Rich data (many fields) → ~100 items saved
- Reduced parameters → All 154 saves successfully
- No errors, no warnings—just partial persistence
Can someone explains why this happening? I can’t find any env variable controls such thing.