array.setUnion(array) → array
Perform a set intersection of two arrays, returning an array with all unique items from both.
Example: Retrieve Iron Man’s equipment list with the addition of some new boots and an arc reactor.
r.table("marvel").get("IronMan").g("equipment") .setUnion(r.array("newBoots", "arc_reactor")).run(conn);
Couldn't find what you were looking for?
© RethinkDB contributors
Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
https://rethinkdb.com/api/java/set_union/