pluckEach
The pluckEach method Is very similar to the pluck method, except that it safely collects records in batches to prevent loading all the queryable data into memory at once. This should be used in cases where you are dealing with tables with large amounts of data.
await User.pluckEach('id', id => {
console.log(id)
})
// 123
// 456