Procházet zdrojové kódy

scoper on find query.by default adds limit 100

Ivan Asmer před 5 roky
rodič
revize
9c1a6d488f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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=100]}) {
         console.log(limitValue, cursorCalls)
         return [query, cursorCalls]
     }