(
entityName: EntityName<T>,
where: FilterQuery<T>[],
data: Partial<T>[],
ctx?: Transaction<ClientSession>,
upsert?: boolean,
upsertOptions?: UpsertManyOptions<T>,
signal?: AbortSignal,
)
| 307 | } |
| 308 | |
| 309 | async bulkUpdateMany<T extends object>( |
| 310 | entityName: EntityName<T>, |
| 311 | where: FilterQuery<T>[], |
| 312 | data: Partial<T>[], |
| 313 | ctx?: Transaction<ClientSession>, |
| 314 | upsert?: boolean, |
| 315 | upsertOptions?: UpsertManyOptions<T>, |
| 316 | signal?: AbortSignal, |
| 317 | ): Promise<QueryResult<T>> { |
| 318 | return this.runQuery<T>('bulkUpdateMany', entityName, data, where, ctx, { upsert, upsertOptions, signal }); |
| 319 | } |
| 320 | |
| 321 | async deleteMany<T extends object>( |
| 322 | entityName: EntityName<T>, |
no test coverage detected