Uploaded image for project: 'Realm JavaScript SDK'
  1. Realm JavaScript SDK
  2. RJS-955

[Realm Web] No "skip" option on MongoDB Collection?

      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

            Assignee:
            ferdinando.papale@mongodb.com Ferdinando Papale
            Reporter:
            unitosyncbot Unito Sync Bot
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: