Просмотр исходного кода

scoper on find query.by default adds limit 100

Ivan Asmer 5 лет назад
Родитель
Сommit
4eeff0b118
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      expand.js

+ 1 - 1
expand.js

@@ -1,6 +1,6 @@
 const { buildSchema, GraphQLObjectType, GraphQLString, GraphQLInt, GraphQLList, GraphQLSchema } = require('graphql');
 const ObjectID    = require("mongodb").ObjectID;
-const bound       = 10;
+const bound       = 100;
 function mmExpandSchema(gqlSchema, defaultQueryFields, defaultMutationFields, scoper){
     function scoperTest(query,cursorCalls={limit:[bound]}) {
         cursorCalls.limit || (cursorCalls.limit = [bound])