Skip to content

Instantly share code, notes, and snippets.

@vjefri
Last active May 22, 2016 04:05
Show Gist options
  • Save vjefri/a3f7d8dce5f66714772fd5ffe2ac2646 to your computer and use it in GitHub Desktop.
Save vjefri/a3f7d8dce5f66714772fd5ffe2ac2646 to your computer and use it in GitHub Desktop.
// users_controller.js
index() {
User.query()
.where({tweets__body__icontains: 'Minecraft'}) // add me
.join('tweets', {body__icontains: 'Minecraft'}) // add me
.end((err, models) => {
this.respond(err || models, ['tweets']); // add me
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment