Method: Origin::Aggregable#unwind
- Defined in:
- lib/origin/aggregable.rb
#unwind(field) ⇒ Aggregable
Add an unwind ($unwind) to the aggregation pipeline.
82 83 84 85 86 |
# File 'lib/origin/aggregable.rb', line 82 def unwind(field) aggregation(field) do |pipeline| pipeline.unwind(field) end end |