mongodb/mongodb-insert-one

Insert One Document

Add a single document to a collection

mongodb
insert
document

Command

db.users.insertOne({name: 'Alice', age: 25})

Explanation

Inserts a single document into a collection. Useful for adding new entries to your database.

Examples

Insert one product document

db.products.insertOne({name: 'Laptop', price: 1200})