Add a match stage to the aggregation pipeline
($match: Document)
| 160 | |
| 161 | /** Add a match stage to the aggregation pipeline */ |
| 162 | match($match: Document): this { |
| 163 | return this.addStage({ $match }); |
| 164 | } |
| 165 | |
| 166 | /** Add an out stage to the aggregation pipeline */ |
| 167 | out($out: { db: string; coll: string } | string): this { |