Sfoglia il codice sorgente

scoper on find query.by default adds limit 100

Ivan Asmer 5 anni fa
parent
commit
ac33659ab9
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      expand.js

+ 1 - 1
expand.js

@@ -136,7 +136,7 @@ function mmExpandSchema(gqlSchema, defaultQueryFields, defaultMutationFields, sc
                             //console.log(args)
                             let results = []
 
-                            for (let result of Savable.m[outputTypeName].find(scoper(...args))){
+                            for (let result of Savable.m[outputTypeName].find(...scoper(...args))){
                                 try {result = await result} catch (e) { break }
                                 results.push(result)
                             }