skip to Main Content

Mongodb – Update a mongo json object

I am trying to update a document but it doesn't update and it doesn't throw any errors. type Course struct { ObjectId primitive.ObjectID `bson:"_id, omitempty"` Id string `json:"id"` Title string `json:"title"` Description string `json:"description"` Lessons string `json:"lessons"` Duration string `json:"duration"`…

VIEW QUESTION

Mongodb – Fetch data based on date in Mongo DB

I have data in collection named AuditReport as shown below. { "_id" : ObjectId("642aa674759fdc00019ddac5"), "Employee Name" : "a1", "Checked in" : "06/20/2023 06:11 APM" }, { "_id" : ObjectId("642aa674759fdc00019ddac5"), "Employee Name" : "a1", "Checked in" : "04/03/2022 10:15 AM" },…

VIEW QUESTION
Back To Top
Search