Ver código fonte

scoper on find query.by default adds limit 100

Ivan Asmer 5 anos atrás
pai
commit
908bcf52cb
1 arquivos alterados com 2 adições e 6 exclusões
  1. 2 6
      expand.js

+ 2 - 6
expand.js

@@ -1,12 +1,8 @@
 const { buildSchema, GraphQLObjectType, GraphQLString, GraphQLInt, GraphQLList, GraphQLSchema } = require('graphql');
 const ObjectID    = require("mongodb").ObjectID;
 const bound       = 100;
-const scoper      = (...params) => {
-    if (params[1] && params[1].limit && Array.isArray(params[1].limit)){ 
-        let limit = params[1].limit[0]
-        if (!(Number.isInt(limit) && limit <= bound && limit > 0)){
-            params[1].limit = [bound]
-    }
+const scoper      = (...params=[{},{limit:[limitValue]}]) => {
+    console.log(limit)
     return params
 }
 function mmExpandSchema(gqlSchema, defaultQueryFields, defaultMutationFields, scoper=scoper )){