(data: Partial<Item>, opts?: MutationOptions)
| 8 | } |
| 9 | |
| 10 | override async createOne(data: Partial<Item>, opts?: MutationOptions): Promise<PrimaryKey> { |
| 11 | const result = await super.createOne(data, opts); |
| 12 | |
| 13 | const flowManager = getFlowManager(); |
| 14 | await flowManager.reload(); |
| 15 | |
| 16 | return result; |
| 17 | } |
| 18 | |
| 19 | override async updateMany(keys: PrimaryKey[], data: Partial<Item>, opts?: MutationOptions): Promise<PrimaryKey[]> { |
| 20 | const result = await super.updateMany(keys, data, opts); |
no test coverage detected