Browse Source

fix: use execAndParse

pull/7304/head
Pranav C 9 months ago
parent
commit
2a500f1f1b
  1. 2
      packages/nocodb/src/db/BaseModelSqlv2.ts

2
packages/nocodb/src/db/BaseModelSqlv2.ts

@ -5610,7 +5610,7 @@ class BaseModelSqlv2 {
qb.orWhere(await this._wherePk(rowId));
}
await qb;
await this.execAndParse(qb, null, { raw: true });
}
async prepareNocoData(data) {

Loading…
Cancel
Save