Is there an afterSaveAll hook?

Hello guys,
this is my first post, i would like to know if there is an afterSaveAll hook in the Parse server, that is an afterSave hook that trigger when the sdk call Parse.Object.saveAll(documents) with ALL the new/updated documents.
Thanks to all!

No. There is not such trigger. You can write a Cloud Code function though. The cloud code function can receive the array of objects, call saveAll function and then perform the operations that you need at the end.