mongodbHow to use insertone in MongoDB?
MongoDB's insertOne()
method is used to insert a single document into a collection.
Example
db.collection.insertOne(
{
item: "canvas",
qty: 100,
tags: ["cotton"],
size: { h: 28, w: 35.5, uom: "cm" }
}
)
Output example
{
"acknowledged" : true,
"insertedId" : ObjectId("5f3d7f9f8f9f8f9f8f9f8f9f")
}
Code explanation
db.collection.insertOne()
: This is the method used to insert a single document into a collection.{ item: "canvas", qty: 100, tags: ["cotton"], size: { h: 28, w: 35.5, uom: "cm" } }
: This is the document that is being inserted into the collection.acknowledged
: This is a boolean value that indicates whether the operation was successful or not.insertedId
: This is the unique identifier of the document that was inserted.
Helpful links
More of Mongodb
- How to check the version of MongoDB?
- How to use watch in MongoDB?
- How to update one document in MongoDB?
- How to update many documents in MongoDB?
- How to use MongoDB queue?
- How to create a many to many relation in MongoDB?
- How to insert new document into MongoDB?
- How to use hint in MongoDB?
- How to work with time series data in MongoDB?
- How to use unwind in MongoDB?
See more codes...