'use strict'; module.exports = (db, id) => { return { where: { id: id }, include: [ { model: db.html_content_item, include: [ db.tweet, db.instagram ] } ] }; };