dobo
Version:
DBMS for Bajo Framework
17 lines (14 loc) • 667 B
JavaScript
import { getFilterAndOptions, execHook, execModelHook } from './_util.js'
const action = 'build'
async function build (opts = {}) {
opts.dataOnly = opts.dataOnly ?? true
const { dataOnly } = opts
const { options } = await getFilterAndOptions.call(this, null, opts, action)
await execHook.call(this, 'beforeBuildModel', options)
await execModelHook.call(this, 'beforeBuildModel', options)
const result = (await this.driver._buildModel(this, options)) ?? {}
await execModelHook.call(this, 'afterBuildModel', result, options)
await execHook.call(this, 'afterBuildModel', result, options)
return dataOnly ? result.data : result
}
export default build