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.
There should at least be a warning logged when an the update operation silently limits the data as this could lead to corrupted data state which could be hard to track down.
– NikBoth of you are correct, thanks for the answers! it's indeed related to the
– AbdallahQUERY_LIMIT_DEFAULTinside the flows, but it works smoothly using any other method (import or manual inserts). But I have the same opinion as @Nik, it should at least show a warning because it's misleading.