Open
Description
Explain the Problem in Detail
I have thousands of items that I want to update.
Currently, there's only updateDocument()
API available, which only updates a single data. Since Apps Script doesn't support parallelization (CMIIW), our only option is to call updateDocument()
multiple times synchronously, which is very bad for performance.
Do you have any solution/workaround for this?