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
schema/query: allow multiple operators in objects
Examples:
- '{$gt:1,$lt:2}' is now an alias to '{$and:[{$gt:1},{$lt:2}]}'.
- '{$gt:1,$gt:2}' is now an alias to '{$and:[{$gt:1},{$gt:2}]}'.
Note that there is no guard against duplicated operators, just like
there is no guard for duplicated operators when using an explicit $and.
However, a mix of operator and non-operator fields will be rejected.