I've a publication which sends limited number of records based on start
and limit
Metero.publish("posts",function(start,limit){
return Posts.find({},{"start":start,"limit":limit});
});
I'm subscribing to the publish function in autorun
function.
My problem is I already have few records of posts
collection in client which is used by another table
the current publish function may have records that already existed in client
I just want to know the records that are sent by the current publish function.
Any hacks or work arounds are also welcome.
EDIT I want to display those records which are published in a table, as I already have some data in client It is tought to filter out what records are sent to the client by the publish function