- select specializz.

This commit is contained in:
paoloar77
2021-12-31 01:44:28 +01:00
parent 2d80150e9a
commit b587b5e0a7
5 changed files with 99 additions and 4 deletions

View File

@@ -1261,6 +1261,9 @@ module.exports = {
const q3 = this.getLookup(params.lookup3, 3, proj);
if (q3) query = [...query, ...q3];
const q4 = this.getLookup(params.lookup4, 4, proj);
if (q4) query = [...query, ...q4];
if (params.filtersearch2.length > 0) {
query.push({$match: {$and: params.filtersearch2}});
}