Добрый день, сделал добавления продуктов. 1 продукт добавляется отлично, а вот уже повторный выдает такую ошибку.
message: "E11000 duplicate key error collection: dbName.products index: email_1 dup key: { email: null }"
Посмотрел в гугле, как там подсказывают дело в том что е-майл должен быть unique либо же не null как в данном случае.
Но проблема в том что это продукты, они не получают связку е-майл
Вот схема
const {Schema, model, Types} = require('mongoose')
const schema = new Schema({
name: {type: String, required: true},
price: {type: Number, required: true},
rating: {type: Number, default: 4.7},
weight: {type: String, required: true},
})
module.exports = model("Product", schema)