Closed
Description
New Feature / Enhancement Checklist
- I am not disclosing a vulnerability.
- I am not just asking a question.
- I have searched through existing issues.
Current Limitation
Parse Cloud Config parameters do not support atomic updates. For example, adding an entry to an array or incrementing a value.
Feature / Enhancement Description
Add support for atomic updates, similar to the atomic operations increment, add for Parse Objects.
Example Use Case
// Increment number
await Parse.Config.increment({ key: value });
// Add item to array
await Parse.Config.add({ key: value });