-
Type: Improvement
-
Resolution: Works as Designed
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: Node.js, React Native, Web
-
1 - XS (<= 1 day)
-
3450
-
Needed
There is no "skip" option on MongoDB Collection. Is that correct?
The only way to use skip right now would be on aggregation.
Code Sample
Directly from realm-web source code:
class MongoDBCollection { find(filter = {}, options = {}) { return this.functions.find({ database: this.databaseName, collection: this.collectionName, query: filter, project: options.projection, sort: options.sort, limit: options.limit, // WHERE IS THE "skip" option? }); }
Version of Realm and Tooling
- Realm JS SDK Version: realm-web 1.0
- Node or React Native: no