$updateArray = [
‘updateOne’ => [
[
‘_id’ => new \MongoDB\BSON\ObjectId($customer[‘_id’]),
‘store_id’ => $this->storeId,
],
[
‘$set’ => [
‘source’ => $source,
‘program_status’ => true,
],
],
[
‘upsert’ => false,
],
],
];

$customerUpdate = new Customer;
$customerUpdate->raw()->bulkWrite($updateArray);

but some data not updating !.