Hi all
Thank you very much in advance for taking the time to read this.
I'm developing a command-line application that updates all objects by adding them an external ID.
Everything is working well overall.
In some cases, due to network interruptions, some objects that were being modified get locked (checked out).
We will update those manually — that's not a problem, as we can isolate them in a view.
The issue is that my command-line program, which processes batches of 1,000 objects at a time, includes these locked objects.
And that leads to wasted time trying to process them.
I would like to exclude them from my searchBuilder
, in a similar way to how we exclude deleted objects with searchBuilder.Deleted(false);
Is there a way to do something like searchBuilder.CheckedOut(false);
or similar?
Thanks a lot in advance!
Best regards,
Anne