Created
June 28, 2018 15:06
-
-
Save yihyang/28d1a5224b50263fc660a3883061acb6 to your computer and use it in GitHub Desktop.
BookshelfJS Notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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