You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of right now, Meteor doesn't support cursor.find({}, {skip: 5, limit: 5}).count({applySkipLimit: true}) all queries can be assumed to return the full number of matches documents without regards to the skip / limit.
So either:
When: meteor/meteor#1201 is resolved, publish-counts should support applySkipLimit.
Or if it turns out that applySkipLimit won't be supported we should figure out some workaround.
In the meantime it might be worth it to make note of this in the README.md.
Cheers
The text was updated successfully, but these errors were encountered:
As of right now, Meteor doesn't support
cursor.find({}, {skip: 5, limit: 5}).count({applySkipLimit: true})
all queries can be assumed to return the full number of matches documents without regards to theskip
/limit
.So either:
When: meteor/meteor#1201 is resolved,
publish-counts
should supportapplySkipLimit
.Or if it turns out that
applySkipLimit
won't be supported we should figure out some workaround.In the meantime it might be worth it to make note of this in the
README.md
.Cheers
The text was updated successfully, but these errors were encountered: