MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Indice Mongoose su un campo nel documento nidificato

Usa le virgolette intorno a "nesteddoc.field1" per valutare il campo nidificato :

PostSchema.index({ "nesteddoc.field1": 1 }, { unique: true });

Inoltre, Mongoose chiamerà ensureIndex internamente, da documento mongoose :

Puoi anche definire l'indice nello schema :

var PostSchema = new mongoose.Schema({
    title: String,
    link: String,
    author: { type: String, required: true },
    upvotes: { type: Number, default: 0 },
    nesteddoc: {
        field1: { type: String, unique: true, index: true },
    }
});