MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Decrementando um campo do tipo number em mongodb e nodejs


Use $inc operador.
 db.yourcollection.update({ /* find options */ }, { $inc: {piecesLeft : -1 } });

Atualizado:
db.yourcollection.update({
    _id: '572f16440a0dbb1e0cc02201', // Find updated item e.g. by _id
    piecesLeft: { $gt: 0 } // Update only if piecesLeft > 0
}, {
    $inc: {
        piecesLeft: -1 // Increment by -1 
    }
});