Skip to main content

findEach

The findEach method will collect records in batches of 1000 by default (though you can customize the batch size with a second argument), and then will proceed to call your callback function for each record found.

await User.findEach(async (user) => {
if (user.email.includes('burpcollaborator')) await user.destroy()
})

await User.findEach(
async (user) => {
if (user.email.includes('burpcollaborator')) await user.destroy()
},
{ batchSize: 20000 },
)

Chaining

Similar to other execution methods, findEach can be chained with other chainable query methods, such as where and whereNot.

await User.whereNot({ email: null }).findEach(async (user) => {
if (user.email.includes('burpcollaborator')) await user.destroy()
})