c2-mongoose 2.1.56 → 2.1.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/flow/SearchFlow.js
CHANGED
|
@@ -148,7 +148,7 @@ var SearchFlow = /** @class */ (function () {
|
|
|
148
148
|
SearchFlow.prototype.searchPageable = function (model, options) {
|
|
149
149
|
var _a;
|
|
150
150
|
return __awaiter(this, void 0, void 0, function () {
|
|
151
|
-
var stagesItems, result, items;
|
|
151
|
+
var stagesItems, result, populate, items;
|
|
152
152
|
return __generator(this, function (_b) {
|
|
153
153
|
switch (_b.label) {
|
|
154
154
|
case 0:
|
|
@@ -177,7 +177,8 @@ var SearchFlow = /** @class */ (function () {
|
|
|
177
177
|
]).session(options === null || options === void 0 ? void 0 : options.session)];
|
|
178
178
|
case 1:
|
|
179
179
|
result = _b.sent();
|
|
180
|
-
|
|
180
|
+
populate = __assign(__assign({}, this.populate), { select: this.select });
|
|
181
|
+
return [4 /*yield*/, model.populate(result[0].items, populate)];
|
|
181
182
|
case 2:
|
|
182
183
|
items = _b.sent();
|
|
183
184
|
return [2 /*return*/, {
|
package/package.json
CHANGED
package/src/flow/SearchFlow.ts
CHANGED
|
@@ -103,8 +103,11 @@ abstract class SearchFlow {
|
|
|
103
103
|
}
|
|
104
104
|
]
|
|
105
105
|
).session(options?.session as ClientSession)
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
let populate = {
|
|
107
|
+
...this.populate,
|
|
108
|
+
select: this.select
|
|
109
|
+
}
|
|
110
|
+
let items = await model.populate(result[0].items, populate)
|
|
108
111
|
|
|
109
112
|
return {
|
|
110
113
|
items: items,
|