Mongodb – Mongoose showing error : "ValidationError: Product validation failed: name: Cast to string failed for….."
I have a code where a schema for storing information about product has been defined followed by the code to add product information. Here is the code: const Product=mongoose.model("Product", { id:{ type: Number, required: true, }, name:{ type: String, required:…