Sfoglia il codice sorgente

scoper on find query.by default adds limit 100

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

+ 3 - 3
expand.js

@@ -2,9 +2,9 @@ const { buildSchema, GraphQLObjectType, GraphQLString, GraphQLInt, GraphQLList,
 const ObjectID    = require("mongodb").ObjectID;
 const bound       = 100;
 function mmExpandSchema(gqlSchema, defaultQueryFields, defaultMutationFields, scoper){
-    function scoperTest(query,cursorCalls={limit:[limitValue]}) {
-        console.log(limitValue, cursorCalls)
-        if (!Number.isInteger(limitValue) || limitValue <= 0 || limitValue > 100) cursorCalls.limit[0] = 100;
+    function scoperTest(query,cursorCalls={limit:[100]}) {
+        cursorCalls.limit || cursorCalls.limit = [100]
+        if (!Number.isInteger(cursorCalls.limit[0]) || cursorCalls.limit[0] <= 0 || cursorCalls.limit[0] > 100) cursorCalls.limit = [100];
         return [query, cursorCalls]
     }
     scoper=scoper || scoperTest