Merge pull request #1007 from horiaradu/master

Optimize related model queries
This commit is contained in:
Amir-61 2016-08-03 16:24:32 -04:00 committed by GitHub
commit c2a683bca4
1 changed files with 7 additions and 0 deletions

View File

@ -212,6 +212,9 @@ Inclusion.include = function(objects, include, options, cb) {
}
}
}
if (!foreignKeys.length) {
return cb(null, []);
}
if (filter.limit || filter.skip || filter.offset) {
// Force the find to be performed per FK to honor the pagination
pageSize = 1;
@ -235,6 +238,10 @@ Inclusion.include = function(objects, include, options, cb) {
}
var items = [];
// Optimization: no need to resolve keys that are an empty array
listOfFKs = listOfFKs.filter(function(keys) {
return keys.length > 0;
});
async.each(listOfFKs, function(foreignKeys, done) {
var newFilter = {};
for (var f in filter) {