Skip to content

Instantly share code, notes, and snippets.

@wharley
Created March 3, 2017 20:31
Show Gist options
  • Save wharley/e2245977b6e354404d51f6001765719a to your computer and use it in GitHub Desktop.
Save wharley/e2245977b6e354404d51f6001765719a to your computer and use it in GitHub Desktop.
model.Receita.findAll({
where: {
id: filter.id
},
include: [
{ model: model.Pessoa }
],
order: 'seq_receita'
}).then((data) => {
res.send(data);
}).catch((error) => {
console.log(error);
res.send({ "data": 0 });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment