(model, tableName, optionsArg)
| 996 | } |
| 997 | |
| 998 | async select(model, tableName, optionsArg) { |
| 999 | const options = { ...optionsArg, type: QueryTypes.SELECT, model }; |
| 1000 | |
| 1001 | return await this.sequelize.query( |
| 1002 | this.queryGenerator.selectQuery(tableName, options, model), |
| 1003 | options |
| 1004 | ); |
| 1005 | } |
| 1006 | |
| 1007 | async increment(model, tableName, where, incrementAmountsByField, extraAttributesToBeUpdated, options) { |
| 1008 | options = Utils.cloneDeep(options); |