@koalarx/nest 3.1.16 → 3.1.17

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.
@@ -72,7 +72,7 @@ class RepositoryBase {
72
72
  select: this.getSelectRootPrismaSchema(instance.constructor),
73
73
  };
74
74
  }
75
- else {
75
+ else if (!(instance instanceof list_1.List)) {
76
76
  selectSchema[prop.name] = true;
77
77
  }
78
78
  });
@@ -309,7 +309,7 @@ class RepositoryBase {
309
309
  const entityInstance = list.entityType;
310
310
  relationKeys.push(propName);
311
311
  const items = [];
312
- data[propName].forEach((item) => {
312
+ data[propName]?.forEach((item) => {
313
313
  const cacheKey = `${entity.constructor.name}-${propName}-${this.getIdOnEntity(new entityInstance(), item)}`;
314
314
  if (cache.has(cacheKey)) {
315
315
  items.push(Promise.resolve(cache.get(cacheKey)));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koalarx/nest",
3
- "version": "3.1.16",
3
+ "version": "3.1.17",
4
4
  "description": "",
5
5
  "author": "Igor D. Rangel",
6
6
  "license": "MIT",