I have publication like this : ``` export const Trees = new Mongo.Collection('trees'); ReactiveTable.publish("trees.all", Trees); ``` but when I subscribe it ``` Meteor.subscribe('trees.all'); ``` no data in client I want to do server side pagination with this.
I have publication like this :
but when I subscribe it
no data in client
I want to do server side pagination with this.