const { ClassificationRoot } = require('database/models') module.exports = async (id, ctx, next) => { ctx.models = ctx.models ?? {} ctx.models.classification = await ClassificationRoot.findByPk(id) return await next() }