mingo
Version:
MongoDB query language for in-memory objects
12 lines (11 loc) • 327 B
TypeScript
import { PipelineOperator } from "../../core";
/**
* Filters the document stream, and only allows matching documents to pass into the next pipeline stage.
* $match uses standard MongoDB queries.
*
* @param collection
* @param expr
* @param options
* @returns {Array|*}
*/
export declare const $match: PipelineOperator;