mongoose remove and delete code example
Example 1: mongoose find by and delete
Campground.findByIdAndRemove(req.params.id, function(err){
if(err){
res.redirect("/campgrounds");
} else {
res.redirect("/campgrounds");
}
});
Example 2: delete document mongose
Model.deleteOne({ options }, function (err) {});