Fix for enrich endpoint discovered by tests.
This commit is contained in:
parent
70071dac28
commit
b54157a6fb
|
@ -163,10 +163,14 @@ export async function fetchEnrichedRow(ctx: UserCtx) {
|
||||||
},
|
},
|
||||||
includeSqlRelationships: IncludeRelationship.INCLUDE,
|
includeSqlRelationships: IncludeRelationship.INCLUDE,
|
||||||
})
|
})
|
||||||
row[fieldName] = await outputProcessing(linkedTable, relatedRows, {
|
row[fieldName] = await outputProcessing<Row[]>(
|
||||||
squash: true,
|
linkedTable,
|
||||||
preserveLinks: true,
|
relatedRows.rows,
|
||||||
})
|
{
|
||||||
|
squash: true,
|
||||||
|
preserveLinks: true,
|
||||||
|
}
|
||||||
|
)
|
||||||
}
|
}
|
||||||
return row
|
return row
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue