@mikro-orm/core 6.5.6-dev.7 → 6.5.6-dev.8
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/entity/EntityLoader.js +8 -11
- package/package.json +2 -2
package/entity/EntityLoader.js
CHANGED
|
@@ -465,23 +465,20 @@ class EntityLoader {
|
|
|
465
465
|
}
|
|
466
466
|
getChildReferences(entities, prop, options, ref) {
|
|
467
467
|
const filtered = this.filterCollections(entities, prop.name, options, ref);
|
|
468
|
-
const children = [];
|
|
469
468
|
if (prop.kind === enums_1.ReferenceKind.ONE_TO_MANY) {
|
|
470
|
-
|
|
469
|
+
return filtered.map(e => e[prop.name].owner);
|
|
471
470
|
}
|
|
472
|
-
|
|
473
|
-
|
|
471
|
+
if (prop.kind === enums_1.ReferenceKind.MANY_TO_MANY && prop.owner) {
|
|
472
|
+
return filtered.reduce((a, b) => {
|
|
474
473
|
a.push(...b[prop.name].getItems());
|
|
475
474
|
return a;
|
|
476
|
-
}, [])
|
|
477
|
-
}
|
|
478
|
-
else if (prop.kind === enums_1.ReferenceKind.MANY_TO_MANY) { // inverse side
|
|
479
|
-
children.push(...filtered);
|
|
475
|
+
}, []);
|
|
480
476
|
}
|
|
481
|
-
|
|
482
|
-
|
|
477
|
+
if (prop.kind === enums_1.ReferenceKind.MANY_TO_MANY) { // inverse side
|
|
478
|
+
return filtered;
|
|
483
479
|
}
|
|
484
|
-
|
|
480
|
+
// MANY_TO_ONE or ONE_TO_ONE
|
|
481
|
+
return this.filterReferences(entities, prop.name, options, ref);
|
|
485
482
|
}
|
|
486
483
|
filterCollections(entities, field, options, ref) {
|
|
487
484
|
if (options.refresh) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikro-orm/core",
|
|
3
|
-
"version": "6.5.6-dev.
|
|
3
|
+
"version": "6.5.6-dev.8",
|
|
4
4
|
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.mjs",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"esprima": "4.0.1",
|
|
65
65
|
"fs-extra": "11.3.2",
|
|
66
66
|
"globby": "11.1.0",
|
|
67
|
-
"mikro-orm": "6.5.6-dev.
|
|
67
|
+
"mikro-orm": "6.5.6-dev.8",
|
|
68
68
|
"reflect-metadata": "0.2.2"
|
|
69
69
|
}
|
|
70
70
|
}
|