You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
When using insertMany() with objects containing Array properties, the operation fails because the property value mapping logic does not handle array types. The code currently only handles String and Number types, causing arrays to hit the assert false branch.
Steps to Reproduce:
Create an object with an Array property (e.g., String[], List<String>)
Attempt to insert using insertMany()
Operation fails with AssertionError (if assertions enabled) or silently ignores the property (if assertions disabled)