When i try to run this code below i get the error: MongoError: The dollar ($) prefixed field ‘$cond’ in ‘energy.$cond’ is not valid for storage. How can i fix this issue?
var updateDoc = {
$set: {
energy: {
$cond: {
if: { $gt: [ { $add: [ "$energy", 20 ] }, 100 ] },
then: 100,
else: { $add: [ "$energy", 20 ] }
}
}
}
}