I have an use case where user selects objects at bulk and changes a property all at once. I see 10000 is the limit for object edits in a single execution. How to handle scenarios with around 100k objects edit in a go?
I found a solution for this. I used ObjectSet input for my function(before it was List of Objects). With this I am able to edit more than 10000 objects(worked on 80000 objects)
2 Likes