Có ops
đối tượng trong records
trong đó chứa doc / docs được chèn.
Hãy thử:
collectionUsers.insert({'name':'john'},function(err,records){
// You can explore more here
console.log("record contents",JSON.stringify(records,null,4));
// Desired output
console.log("Id of new document added = " + records.ops[0]._id);
});