Kurounin / Pagination

This package allows you to paginate the subscriptions over meteor's collections. It can be used in a Blaze template or in ReactJS.
MIT License
56 stars 22 forks source link

How does one set a limit on the total maximum number of documents to retrieve? #84

Closed carlosalvidrez closed 6 years ago

carlosalvidrez commented 6 years ago

For example, I want the pagination to work as usual, but to ignore all but the first 100 documents. I hope that's clear, please let me know. Thanks!

Kurounin commented 6 years ago

If you want to limit the maximum number of documents that can be retrieved at one time you can adjust the pagination option on server side: https://github.com/Kurounin/Pagination/issues/66 You could also set on server side additional filters in case you wanted to hide some specific documents.

carlosalvidrez commented 6 years ago

Thank you! I see I had asked this before, my apologies.