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
Back To Top
Search