Skip to content

Instantly share code, notes, and snippets.

@yihyang
Created June 28, 2018 15:06
Show Gist options
  • Select an option

  • Save yihyang/28d1a5224b50263fc660a3883061acb6 to your computer and use it in GitHub Desktop.

Select an option

Save yihyang/28d1a5224b50263fc660a3883061acb6 to your computer and use it in GitHub Desktop.
BookshelfJS Notes
var activeEvents = yield new Model.Event()
.query(function(qb) {
qb.where('status', 'ACTIVE').orderBy('id', 'DESC').limit(5)
})
.fetchAll({
withRelated: [
'host',
'location.facilities',
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment