(keys: PrimaryKey[], data: Partial<Item>, opts?: MutationOptions)
| 17 | } |
| 18 | |
| 19 | override async updateMany(keys: PrimaryKey[], data: Partial<Item>, opts?: MutationOptions): Promise<PrimaryKey[]> { |
| 20 | const result = await super.updateMany(keys, data, opts); |
| 21 | |
| 22 | const flowManager = getFlowManager(); |
| 23 | await flowManager.reload(); |
| 24 | |
| 25 | return result; |
| 26 | } |
| 27 | |
| 28 | override async deleteMany(keys: PrimaryKey[], opts?: MutationOptions): Promise<PrimaryKey[]> { |
| 29 | const result = await super.deleteMany(keys, opts); |
nothing calls this directly
no test coverage detected