Skip to content

Instantly share code, notes, and snippets.

@THEozmic
Created July 17, 2017 12:04
Show Gist options
  • Save THEozmic/392ff71a85f76dd4f26eb2edd9a244bb to your computer and use it in GitHub Desktop.
Save THEozmic/392ff71a85f76dd4f26eb2edd9a244bb to your computer and use it in GitHub Desktop.
...
fetchMe(req, res) {
const username = req.decoded.data;
return models.Users
.find({
include: [{
model: models.Groups,
as: 'groups',
required: false,
attributes: ['id', 'name'],
through: { attributes: [] }
}],
where: { username }
})
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment