Concept Flow - insertOne method
Prepare document to insert
Call insertOne(document)
MongoDB checks document validity
Insert document into collection
Return result with insertedId
End
The insertOne method takes a document, checks it, inserts it into the collection, and returns the inserted document's ID.