Add a unwind stage to the aggregation pipeline
($unwind: Document | string)
| 235 | |
| 236 | /** Add a unwind stage to the aggregation pipeline */ |
| 237 | unwind($unwind: Document | string): this { |
| 238 | return this.addStage({ $unwind }); |
| 239 | } |
| 240 | |
| 241 | /** Add a geoNear stage to the aggregation pipeline */ |
| 242 | geoNear($geoNear: Document): this { |
no test coverage detected