Prechádzať zdrojové kódy

scoper on find query.by default adds limit 100

Ivan Asmer 5 rokov pred
rodič
commit
102f485091
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      expand.js

+ 1 - 1
expand.js

@@ -4,7 +4,7 @@ const bound       = 100;
 function mmExpandSchema(gqlSchema, defaultQueryFields, defaultMutationFields, scoper){
     function scoperTest(query,cursorCalls={limit:[limitValue=100]}) {
         console.log(limitValue, cursorCalls)
-        if (!Number.isNumber(limitValue) || limitValue <= 0 || limitValue > 100) cursorCalls.limit[0] = 100;
+        if (!Number.isInteger(limitValue) || limitValue <= 0 || limitValue > 100) cursorCalls.limit[0] = 100;
         return [query, cursorCalls]
     }
     scoper=scoper || scoperTest