Skip to content

Insert Operations

Insert one document

db.collection.insertOne({
  student_id: 654321,
  products: [
    {
      type: "exam",
      score: 90,
    },
    {
      type: "homework",
      score: 59,
    },
    {
      type: "quiz",
      score: 75,
    },
    {
      type: "homework",
      score: 88,
    },
  ],
  class_id: 550,
})

Insert many documents

db.collection.insertMany([{student_id: 654321},{student_id: 777,}])