ReQL command: setUnion
Command syntax
array.setUnion(array) → array
Description
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);
© RethinkDB contributors
Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
https://rethinkdb.com/api/java/set_union/