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

Usando $ push all'interno di Array in mangusta

Quello a cui miri non è una struttura valida. Quello che probabilmente vuoi invece è uno schema in cui NetworkList contiene direttamente un array di ObjectIds degli amici dell'utente:

var NetworkSchema = new Schema({
    UserID: {
        type: String,
        default: '',
        trim: true
    },
    NetworkList: [{
        type: Schema.ObjectId,
        ref: 'User'
    }]
});

I tuoi documenti sarebbero quindi simili a:

{
    "_id" : ObjectId("548adbc8b7eac44013bf188d"),
    "NetworkList" : [ 
        ObjectId("5486fab40bc27314276be8cf") 
    ],
    "UserID" : "547eaaab6c39471c3f5aebb6",
    "__v" : 0
}

Quindi puoi aggiungere un nuovo amico a NetworkList utilizzando $push operatore in questo modo:

exports.update = function(req, res) {
    var query={'UserID': req.body.UserID};
    var update = {$push: {'NetworkList': req.body.FriendID}};

    Network.findOneAndUpdate(query, update, function(err, doc){ ... });
};