Open
Description
New Feature / Enhancement Checklist
- Report security issues confidentially.
- Any contribution is under this license.
- Before posting search existing issues.
Current Limitation
Current we only support $inc
,$set
,$unset
operators when update field. According mongodb's doc. There are more operators when update field.
Feature / Enhancement Description
Can we support all operators that mongodb supported?
Example Use Case
const obj = new Parse.Object('todo');
obj.min('numberValue',20);
obj.max('numberValue',20);
obj.mul('numberValue',20);
etc...