* Find the minimum value of field * * @param {string} field attribute / field name * @param {object} [options] See aggregate * * @see * Model.aggregate for options * * @returns {Promise<*>}
(field, options)
| 2218 | * @returns {Promise<*>} |
| 2219 | */ |
| 2220 | static async min(field, options) { |
| 2221 | return await this.aggregate(field, 'min', options); |
| 2222 | } |
| 2223 | |
| 2224 | /** |
| 2225 | * Find the sum of field |