for await (const doc of Model.find()) { doc.name = "New Name" await doc.save(); }
const documents = await Model.find({}); documents.forEach(doc => { // do something with the document });