Add an out stage to the aggregation pipeline
($out: { db: string; coll: string } | string)
| 165 | |
| 166 | /** Add an out stage to the aggregation pipeline */ |
| 167 | out($out: { db: string; coll: string } | string): this { |
| 168 | return this.addStage({ $out }); |
| 169 | } |
| 170 | |
| 171 | /** |
| 172 | * Add a project stage to the aggregation pipeline |
no test coverage detected