Skip to content

Instantly share code, notes, and snippets.

@tomconnors
Last active December 18, 2015 23:19
Show Gist options
  • Save tomconnors/5861093 to your computer and use it in GitHub Desktop.
Save tomconnors/5861093 to your computer and use it in GitHub Desktop.
limiting array fields on client side w/ meteor
Posts.find({}, {
fields: {
upvoters: {
$elemMatch: {
id: userId //userId is the current user's id.
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment