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

Funzione per scambiare i valori in NodeJS con mongo+mongoose

Da documentazione Mongo UpdateOne UpdateOne accetta 3 argomenti filtro ,aggiornamento ,richiamata , quindi credo che tu debba passare _id della collezione da modificare.

Update-find() restituisce un cursore e per usarlo convertilo in un array usando find().toArray().then(..so on)

// @route   PATCH api/swap
// @desc    replace date
// @access  Public

router.put("/swap", (req, res) => {
const firstDate = req.body.firstDate;
const secondDate = req.body.secondDate;

console.log(firstDate, secondDate);

Card.find().toArray().then(cards=>cards.forEach(card => {
    if (card.date === firstDate) {
      return card.updateOne( { date: firstDate } ,{ $set: { date: secondDate } });
    } else if (card.date === secondDate) {
      return card.updateOne( { date: secondDate },{ $set: { date: firstDate } });
    } else {
      return card;
    }
  });
}))
.then(() => console.log("working"));
 });