(model, tableName, optionsArg)
| 973 | } |
| 974 | |
| 975 | async select(model, tableName, optionsArg) { |
| 976 | const options = { ...optionsArg, type: QueryTypes.SELECT, model }; |
| 977 | |
| 978 | return await this.sequelize.query( |
| 979 | this.queryGenerator.selectQuery(tableName, options, model), |
| 980 | options |
| 981 | ); |
| 982 | } |
| 983 | |
| 984 | async increment(model, tableName, where, incrementAmountsByField, extraAttributesToBeUpdated, options) { |
| 985 | options = Utils.cloneDeep(options); |