Mongodb – Update collection to change the rank
i have a mongodb collection that I sort by the amount of points each item has, and it shows a rank according to it's place in the collection : db.collection('websites').find({}).sort({ "points": -1 }).forEach(doc => { rank++; doc.rank = rank; delete…