2
2
3
3
const Parse = require ( 'parse-shim' ) ;
4
4
5
+ const PAGE_SIZE = 1000 ;
6
+ const MAX_QUERIES = 10 ;
7
+
5
8
//
6
9
// Run the specified parse query multiple times, modifying skip/limit each
7
10
// time to download all available objects. Return a promise with the stitched
@@ -11,46 +14,47 @@ const Parse = require('parse-shim');
11
14
// For safety, unless superStitch is specified, this limits the total number
12
15
// of queries to 10, yielding an effective max of 10,000 results.
13
16
//
14
- // If 'superStitch' is specified, results are ordered and additionally paged
17
+ // If the 'superStitch' option is specified, results are ordered and additionally paged
15
18
// by the 'createdAt' date field after exhausting the 10k skip. This effectively
16
19
// allows a query to yield unlimited results.
17
20
//
18
21
// @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.
20
24
//
21
25
// NOTE: superStitch is not suitable for use with a sort (as it applies its own sort on createdAt)
22
26
// NOTE: This will modify the specified query, do not reuse the query after calling this function.
23
27
//
24
- function StitchQuery ( query , superStitch ) {
25
- const pageSize = 1000 ;
26
- const maxQueries = 10 ;
28
+ function StitchQuery ( query , options ) {
29
+ options = options || { } ;
27
30
28
- query . limit ( pageSize ) ;
31
+ query . limit ( PAGE_SIZE ) ;
29
32
30
- if ( superStitch ) {
33
+ if ( options . superStitch ) {
31
34
query . ascending ( 'createdAt' ) ;
32
35
}
33
36
34
37
const stitchedPromise = new Parse . Promise ( ) ;
35
38
const stitchedResults = [ ] ;
39
+
36
40
function getNextPage ( curPage , startDate ) {
37
- query . skip ( curPage * pageSize ) ;
41
+ query . skip ( curPage * PAGE_SIZE ) ;
38
42
39
43
if ( startDate ) {
40
44
query . greaterThan ( 'createdAt' , startDate ) ;
41
45
}
42
46
43
- const pagePromise = query . find ( ) ;
47
+ const pagePromise = query . find ( options ) ;
44
48
45
49
pagePromise . done ( function ( pageResults ) {
46
50
pageResults . forEach ( function ( result ) { stitchedResults . push ( result ) ; } ) ;
47
- const maxBatchSize = pageResults . length === pageSize ;
51
+ const maxBatchSize = pageResults . length === PAGE_SIZE ;
48
52
const lastResult = stitchedResults [ stitchedResults . length - 1 ] ;
49
53
50
54
if ( maxBatchSize ) {
51
- if ( curPage + 1 < maxQueries ) {
55
+ if ( curPage + 1 < MAX_QUERIES ) {
52
56
getNextPage ( curPage + 1 , startDate ) ;
53
- } else if ( superStitch ) {
57
+ } else if ( options . superStitch ) {
54
58
getNextPage ( 0 , lastResult . createdAt ) ;
55
59
} else {
56
60
stitchedPromise . resolve ( stitchedResults ) ;
0 commit comments