fixing enrichment of relationships in patch call

This commit is contained in:
Martin McKeaveney 2022-03-09 16:08:55 +01:00
parent bbaed7b94c
commit bab0c66b89
1 changed files with 5 additions and 1 deletions

View File

@ -83,7 +83,11 @@ exports.patch = async ctx => {
const isUserTable = tableId === InternalTables.USER_METADATA
let oldRow
try {
oldRow = await db.get(inputs._id)
let dbTable = await db.get(tableId)
oldRow = await outputProcessing(
dbTable,
await findRow(ctx, tableId, inputs._id)
)
} catch (err) {
if (isUserTable) {
// don't include the rev, it'll be the global rev