Skip to content

Instantly share code, notes, and snippets.

@protodave
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save protodave/8d4d4700509ed36b825e to your computer and use it in GitHub Desktop.
Save protodave/8d4d4700509ed36b825e to your computer and use it in GitHub Desktop.
Meteor app level Mongo `Distinct` emulation
var userTeams = Teams.find({
members: {
$in: [this.userId]
}
});
var userTeamMembers = _.chain(userTeams.fetch())
.map(function (team) {
return team.members;
})
.flatten()
.uniq()
.value();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment