Skip to content

Instantly share code, notes, and snippets.

@lukejagodzinski
Created January 5, 2016 11:56
Show Gist options
  • Save lukejagodzinski/ef901069af9cbc707c96 to your computer and use it in GitHub Desktop.
Save lukejagodzinski/ef901069af9cbc707c96 to your computer and use it in GitHub Desktop.
Article: Sorting with Relations in Meteor
Template.Users.helpers({
posts: function() {
return Posts.find({}, {
sort: {
'author.name': 1
}
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment