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

Mongo che si aggiorna all'interno di un doppio array annidato

Ora c'è (MongoDB>=3.6) un modo per farlo con arrayFilters e $[identifier] .

L'esempio seguente utilizza la mangusta e aggiungerà un elemento a una matrice all'interno di una matrice nidificata doppia. Un bell'articolo che spiega questo è qui .

  const blogPost = await BlogPost.create({
    title    : 'A Node.js Perspective on MongoDB 3.6: Array Filters',
    comments : [
      { author : 'Foo', text : 'This is awesome!', replies : { name : 'George', seenBy : ['Pacey'] } },
      { author : 'Bar', text : 'Where are the upgrade docs?', replies : { name : 'John', seenBy : ['Jenny'] } }
    ]
  });

  const updatedPost = await BlogPost.findOneAndUpdate({ _id : blogPost._id }, {
    $addToSet : {
      'comments.$[comment].replies.$[reply].seenBy' : 'Jenny'
    }
  }, {
    arrayFilters : [{ 'comment.author' : 'Foo' }, { 'reply.name' : 'George' }],
    new          : true
  });

  console.log(updatedPost.comments[0].replies);