Back to top

ReQL command: forEach

Command syntax

sequence.forEach(write_function) → object

Description

Loop over a sequence, evaluating the given write query for each element.

Example: Now that our heroes have defeated their villains, we can safely remove them from the villain table.

r.table('marvel').forEach(function(hero) {
    return r.table('villains').get(hero('villainDefeated')).delete()
}).run(conn, callback)

Get more help

Couldn't find what you were looking for?