orange-orm 4.3.0-beta.2 → 4.3.0
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/docs/changelog.md +2 -0
- package/package.json +4 -4
- package/src/client/index.mjs +784 -373
- package/src/getManyDto.js +1 -1
package/src/getManyDto.js
CHANGED
|
@@ -209,7 +209,7 @@ async function decodeManyRelations(strategy, span) {
|
|
|
209
209
|
async function decodeRelations2(strategy, span, rawRows, resultRows, keys) {
|
|
210
210
|
const promises = [];
|
|
211
211
|
const c = {};
|
|
212
|
-
c.visitJoin = function
|
|
212
|
+
c.visitJoin = function(leg) {
|
|
213
213
|
const name = leg.name;
|
|
214
214
|
const p = decode(strategy[name], leg.span, rawRows, keys).then((rows) => {
|
|
215
215
|
for (let i = 0; i < rows.length; i++) {
|