mingo
Version:
MongoDB query language for in-memory objects
13 lines (12 loc) • 383 B
TypeScript
import { PipelineOperator } from "../../types";
/**
* Filters the document stream to allow only matching documents to pass unmodified into the next pipeline stage.
*
* See {@link https://www.mongodb.com/docs/manual/reference/operator/aggregation/match usage}.
*
* @param collection
* @param expr
* @param options
* @returns
*/
export declare const $match: PipelineOperator;