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?
Contribute: edit this page or open an issue