`for/await/of` is natively supported in Node.js 10.x, so ideally you should be able to do something like: ```javascript for await (const doc of Model.find().cursor({ asyncIterable: true })) {} ``` or ```javascript for await (const doc of Model.find().cursor().asyncIterable()) {} ``` @lineus any thoughts?