Concept Flow - updateOne method
Start with collection
Specify filter criteria
Specify update operation
Call updateOne(filter, update)
Find first matching document
Apply update to that document
Return result with matchedCount and modifiedCount
End
The updateOne method finds the first document matching the filter and applies the update operation to it, then returns the result.