Search code examples
node.jsmongodbmongoose

TypeError: mongoose.schema is not a constructor


const mongoose = require('mongoose');

const productSchema = new mongoose.schema({
    name: String,
    price: Number,
    brand: String
}, {
    timestamps: true
});

module.exports = mongoose.model('Product', productSchema);

Above is my code which I have written for learning can anyone pls help me solve the Error I'm facing


Solution

  • It should be mongoose.Schema()!