'use strict'; function getContentWithComments() { return Promise.try(() => { return knex('content'); }).map((row) => { return Promise.try(() => { return knex('comments').where('content', row.id); }).then((comments) => { row.comments = comments; return row; }); }); }