ReQL command reference - RethinkDB
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);
Related commands
Get more help
Couldn't find what you were looking for?
- Ask a question on Stack Overflow
- Chat with us and our community on Slack
- Talk to the team on IRC on #rethinkdb@freenode.net — via Webchat
- Ping @rethinkdb on Twitter
- Post an issue on the documentation issue tracker on GitHub
Contribute: edit this page or open an issue