$setUnion (aggregation)

Definition

  • $setUnion

New in version 2.6.

Takes two or more arrays and returns an array containing theelements that appear in any input array.

$setUnion has the following syntax:

  1. { $setUnion: [ <expression1>, <expression2>, ... ] }

The arguments can be any valid expression as long as they each resolve to an array.For more information on expressions, seeExpressions.

Behavior

$setUnion performs set operation on arrays, treating arraysas sets. If an array contains duplicate entries, $setUnionignores the duplicate entries. $setUnion ignores the order ofthe elements.

$setUnion filters out duplicates in its result to output anarray that contain only unique entries. The order of the elements inthe output array is unspecified.

If a set contains a nested array element, $setUnion does not descendinto the nested array but evaluates the array at top-level.

ExampleResult
  1. { $setUnion: [ [ "a", "b", "a" ], [ "b", "a" ] ] }
  1. [ "b", "a" ]
  1. { $setUnion: [ [ "a", "b" ], [ [ "a", "b" ] ] ] }
  1. [ [ "a", "b" ], "b", "a" ]

Example

Consider an experiments collection with the following documents:

  1. { "_id" : 1, "A" : [ "red", "blue" ], "B" : [ "red", "blue" ] }
  2. { "_id" : 2, "A" : [ "red", "blue" ], "B" : [ "blue", "red", "blue" ] }
  3. { "_id" : 3, "A" : [ "red", "blue" ], "B" : [ "red", "blue", "green" ] }
  4. { "_id" : 4, "A" : [ "red", "blue" ], "B" : [ "green", "red" ] }
  5. { "_id" : 5, "A" : [ "red", "blue" ], "B" : [ ] }
  6. { "_id" : 6, "A" : [ "red", "blue" ], "B" : [ [ "red" ], [ "blue" ] ] }
  7. { "_id" : 7, "A" : [ "red", "blue" ], "B" : [ [ "red", "blue" ] ] }
  8. { "_id" : 8, "A" : [ ], "B" : [ ] }
  9. { "_id" : 9, "A" : [ ], "B" : [ "red" ] }

The following operation uses the $setUnion operator toreturn an array of elements found in the A array or theB array or both:

  1. db.experiments.aggregate(
  2. [
  3. { $project: { A:1, B: 1, allValues: { $setUnion: [ "$A", "$B" ] }, _id: 0 } }
  4. ]
  5. )

The operation returns the following results:

  1. { "A": [ "red", "blue" ], "B": [ "red", "blue" ], "allValues": [ "blue", "red" ] }
  2. { "A": [ "red", "blue" ], "B": [ "blue", "red", "blue" ], "allValues": [ "blue", "red" ] }
  3. { "A": [ "red", "blue" ], "B": [ "red", "blue", "green" ], "allValues": [ "blue", "red", "green" ] }
  4. { "A": [ "red", "blue" ], "B": [ "green", "red" ], "allValues": [ "blue", "red", "green" ] }
  5. { "A": [ "red", "blue" ], "B": [ ], "allValues": [ "blue", "red" ] }
  6. { "A": [ "red", "blue" ], "B": [ [ "red" ], [ "blue" ] ], "allValues": [ "blue", "red", [ "red" ], [ "blue" ] ] }
  7. { "A": [ "red", "blue" ], "B": [ [ "red", "blue" ] ], "allValues": [ "blue", "red", [ "red", "blue" ] ] }
  8. { "A": [ ], "B": [ ], "allValues": [ ] }
  9. { "A": [ ], "B": [ "red" ], "allValues": [ "red" ] }