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(
hero -> r.table("villains").get(hero.g("villainDefeated")).delete()
).run(conn);
© RethinkDB contributors
Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
https://rethinkdb.com/api/java/for_each/