(keys: PrimaryKey[], data: Partial<Item>, opts?: MutationOptions)
| 55 | } |
| 56 | |
| 57 | override async updateMany(keys: PrimaryKey[], data: Partial<Item>, opts?: MutationOptions): Promise<PrimaryKey[]> { |
| 58 | return super.updateMany(keys, data, this.setDefaultOptions(opts)); |
| 59 | } |
| 60 | |
| 61 | override async readByQuery(query: Query, opts?: QueryOptions) { |
| 62 | if (this.accountability === null) { |
no test coverage detected