mingo
Version:
MongoDB query language for in-memory objects
14 lines (13 loc) • 555 B
TypeScript
import { PipelineOperator } from "../../types";
/**
* Deconstructs an array field from the input documents to output a document for each element. Each output document replaces the array with an element value.
* For each input document, outputs n documents where n is the number of array elements and can be zero for an empty array.
*
* See {@link https://www.mongodb.com/docs/manual/reference/operator/aggregation/unwind/ usage}.
*
* @param collection
* @param expr
* @param options
* @returns
*/
export declare const $unwind: PipelineOperator;