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

Come creare una matrice di array di schemi di oggetti in Mongoose.js

Codice di esempio per creare una matrice di matrici di oggetti:

const cellSchema = new mongoose.Schema({
    type: String,
    count: Number
});

const matrixSchema = new mongoose.Schema({
    matrix: [[cellSchema]]
});

const Matrix = mongoose.model('Matrix', matrixSchema);

const newMatrix = new Matrix({
    matrix: [
        [{ type: 'xyz', count: 10 }, { type: 'ABC', count: 20 }],
        [{ type: 'pqr', count: 10 }]]
});
newMatrix.save();

Risultato