ソースを参照

scoper on find query.by default adds limit 100

Ivan Asmer 5 年 前
コミット
aaa95dce60
1 ファイル変更1 行追加1 行削除
  1. 1 1
      expand.js

+ 1 - 1
expand.js

@@ -3,7 +3,7 @@ const ObjectID    = require("mongodb").ObjectID;
 const bound       = 100;
 function mmExpandSchema(gqlSchema, defaultQueryFields, defaultMutationFields, scoper){
     function scoperTest(query,cursorCalls={limit:[100]}) {
-        cursorCalls.limit || 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]
     }