Back to top

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);

Get more help

Couldn't find what you were looking for?