فهرست منبع

scoper on find query.by default adds limit 100

Ivan Asmer 5 سال پیش
والد
کامیت
ca53528eb7
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      expand.js

+ 1 - 1
expand.js

@@ -2,7 +2,7 @@ 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=100]}) {
+    function scoperTest(query,cursorCalls={limit:[limitValue]}) {
         console.log(limitValue, cursorCalls)
         if (!Number.isInteger(limitValue) || limitValue <= 0 || limitValue > 100) cursorCalls.limit[0] = 100;
         return [query, cursorCalls]