Skip to content

Instantly share code, notes, and snippets.

@lukejagodzinski
Created January 5, 2016 11:57
Show Gist options
  • Save lukejagodzinski/5b02f329eb9adef3416b to your computer and use it in GitHub Desktop.
Save lukejagodzinski/5b02f329eb9adef3416b to your computer and use it in GitHub Desktop.
Article: Sorting with Relations in Meteor
defineRelation(Posts, Users, 'author', 'userId');
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