Skip to content

Commit 5fb763d

Browse files
committed
Add support for options passthrough
1 parent 0278b05 commit 5fb763d

File tree

3 files changed

+24
-21
lines changed

3 files changed

+24
-21
lines changed

README.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ requesting only items that have `createdAt` greater than that of the last item r
1919
the skip to zero. This process is repeated until all results are retrieved (receiving a batch with
2020
less than the requested limit of 1000 documents).
2121

22-
- Note: SuperStitchQuery should **not** be used on queries that already have a sort applied!
22+
- Warning: SuperStitchQuery should **not** be used on queries that already have a sort applied!
2323

2424
#### Installation
2525
```sh
@@ -34,17 +34,16 @@ var StitchQuery = require('parse-stitch-query');
3434
var query = new Parse.Query(Model);
3535
query.equalTo('blah', 'cool');
3636

37-
// Get up to 10,000 results
37+
// Get up to 10,000 results with regular StitchQuery
3838
StitchQuery(query).then((results) => {
3939
// all the results are here!
4040
}, (error) => {
4141
// oh noes! errors
4242
})
4343

44-
// SuperStitchQuery, for unlimited results
45-
StitchQuery(query, true).then((results) => {
46-
// all the results are here!
47-
}, (error) => {
48-
// oh noes! errors
49-
})
44+
// SuperStitchQuery, for unlimited results!
45+
StitchQuery(query, {superStitch: true}).then(...)
46+
47+
// Pass through query options
48+
StitchQuery(query, {userMasterKey: true}).then(...)
5049
```

index.js

+16-12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
const Parse = require('parse-shim');
44

5+
const PAGE_SIZE = 1000;
6+
const MAX_QUERIES = 10;
7+
58
//
69
// Run the specified parse query multiple times, modifying skip/limit each
710
// time to download all available objects. Return a promise with the stitched
@@ -11,46 +14,47 @@ const Parse = require('parse-shim');
1114
// For safety, unless superStitch is specified, this limits the total number
1215
// of queries to 10, yielding an effective max of 10,000 results.
1316
//
14-
// If 'superStitch' is specified, results are ordered and additionally paged
17+
// If the 'superStitch' option is specified, results are ordered and additionally paged
1518
// by the 'createdAt' date field after exhausting the 10k skip. This effectively
1619
// allows a query to yield unlimited results.
1720
//
1821
// @param query {Parse.Query} The query to stitch.
19-
// @param superStitch {Boolean} If you want more than 10k rows you can superStitch.
22+
// @param options {Object} StitchQuery options below, all others passed to query as query opts.
23+
// - superStitch {Boolean} If you want more than 10k rows you can superStitch.
2024
//
2125
// NOTE: superStitch is not suitable for use with a sort (as it applies its own sort on createdAt)
2226
// NOTE: This will modify the specified query, do not reuse the query after calling this function.
2327
//
24-
function StitchQuery(query, superStitch) {
25-
const pageSize = 1000;
26-
const maxQueries = 10;
28+
function StitchQuery(query, options) {
29+
options = options || {};
2730

28-
query.limit(pageSize);
31+
query.limit(PAGE_SIZE);
2932

30-
if (superStitch) {
33+
if (options.superStitch) {
3134
query.ascending('createdAt');
3235
}
3336

3437
const stitchedPromise = new Parse.Promise();
3538
const stitchedResults = [];
39+
3640
function getNextPage(curPage, startDate) {
37-
query.skip(curPage * pageSize);
41+
query.skip(curPage * PAGE_SIZE);
3842

3943
if (startDate) {
4044
query.greaterThan('createdAt', startDate);
4145
}
4246

43-
const pagePromise = query.find();
47+
const pagePromise = query.find(options);
4448

4549
pagePromise.done(function(pageResults) {
4650
pageResults.forEach(function(result) { stitchedResults.push(result); });
47-
const maxBatchSize = pageResults.length === pageSize;
51+
const maxBatchSize = pageResults.length === PAGE_SIZE;
4852
const lastResult = stitchedResults[stitchedResults.length - 1];
4953

5054
if (maxBatchSize) {
51-
if (curPage + 1 < maxQueries) {
55+
if (curPage + 1 < MAX_QUERIES) {
5256
getNextPage(curPage + 1, startDate);
53-
} else if (superStitch) {
57+
} else if (options.superStitch) {
5458
getNextPage(0, lastResult.createdAt);
5559
} else {
5660
stitchedPromise.resolve(stitchedResults);

test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ describe('StitchQueryP', function() {
8585
it('returns all of the expected results @slow', function() {
8686
this.timeout(30000);
8787
return saveObjsP(10100).then((objs) => {
88-
return StitchQueryP(new Parse.Query(Obj), true)
88+
return StitchQueryP(new Parse.Query(Obj), {superStitch: true})
8989
}).then((results) => {
9090
expect(results).to.have.lengthOf(10100);
9191
})

0 commit comments

Comments
 (0)