Browse Source

fix: exec and parse mm children excluded list

Signed-off-by: mertmit <mertmit99@gmail.com>
pull/6721/head
mertmit 1 year ago
parent
commit
2e4f0535ff
  1. 2
      packages/nocodb/src/db/BaseModelSqlv2.ts

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

@ -1415,7 +1415,7 @@ class BaseModelSqlv2 {
applyPaginate(qb, rest);
const proto = await childModel.getProto();
const data = await qb;
const data = await this.execAndParse(qb, childTable);
return data.map((c) => {
c.__proto__ = proto;
return c;

Loading…
Cancel
Save