Description
Check out this issue for an ideal bug report. The closer your issue report is to that one, the more likely we are to be able to help, and the more likely we will be to fix the issue quickly!
For implementation related questions or technical support, please refer to the Stack Overflow and Server Fault communities.
Make sure these boxes are checked before submitting your issue -- thanks for reporting issues back to Parse Server!
- [* ] You've met the prerequisites.
- [ *] You're running the latest version of Parse Server.
- [ *] You've searched through existing issues. Chances are that your issue has been reported or resolved before.
Environment Setup
I am using node js server to run code on linux server
Steps to reproduce
I write just after save method for a class
Parse.Cloud.afterSave("NotificationTitles", function(request) {
and in cloud function i am doing Parse.Object.saveAll(notificationTitles).then(function(notificationTitles) {
but the after save method is not calling , where as when i am saving one object it saving it.