(
entityName: EntityName,
pipeline: any[],
ctx?: Transaction<ClientSession>,
signal?: AbortSignal,
)
| 513 | } |
| 514 | |
| 515 | override async aggregate( |
| 516 | entityName: EntityName, |
| 517 | pipeline: any[], |
| 518 | ctx?: Transaction<ClientSession>, |
| 519 | signal?: AbortSignal, |
| 520 | ): Promise<any[]> { |
| 521 | return this.rethrow(this.getConnection('read').aggregate(entityName, pipeline, ctx, undefined, signal)); |
| 522 | } |
| 523 | |
| 524 | async *streamAggregate<T extends object>( |
| 525 | entityName: EntityName<T>, |
nothing calls this directly
no test coverage detected