Meteor.publish('mountCarmelData', function dataPublication(){
return MountCarmel.find({},
{
sort: {created_at: -1}
});
});
Is there any way to limit this publication to publish only the past 24 hour of data? I have a timestamp on each record called 'created_at'.