MongoDB not working with delete method when using deleteOne
I'm using node and mongoose to build my first API Restful but I'm having some problems with the "Delete" method. async function remove(req, res) { const { id } = req.params const remove = await ProductsModel.deleteOne({ _id: id }) const…