Answers for "mongodb js get id of inserted"

-1

mongodb js get id of inserted

collection.insert(objToInsert, function (err, result){
    if(err)console.log(err);
    else {
        console.log(result["ops"][0]["_id"]);
        // The above statement will output the id of the 
        // inserted object
       }
});
Posted by: Guest on May-14-2020

Code answers related to "mongodb js get id of inserted"

Code answers related to "Javascript"

Browse Popular Code Answers by Language