diff --git a/dbs/mongo/mongo.go b/dbs/mongo/mongo.go index 3bf9055..76f0877 100644 --- a/dbs/mongo/mongo.go +++ b/dbs/mongo/mongo.go @@ -287,7 +287,7 @@ func (m *MongoDB) Search(filters *dbs.Filters, collection_name string) (*mongo.C return nil, 503, err } opts := options.Find() - opts.SetLimit(100) + opts.SetLimit(1000) targetDBCollection := CollectionMap[collection_name] orList := bson.A{} andList := bson.A{}