Browse Source

fix: exclude unnecessary fields from read data(nested)

pull/6475/head
Pranav C 1 year ago committed by mertmit
parent
commit
e702f49abb
  1. 2
      packages/nocodb/src/db/BaseModelSqlv2.ts

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

@ -165,7 +165,7 @@ class BaseModelSqlv2 {
data.__proto__ = proto;
}
return data ? await nocoExecute(ast, data, {}, query) : null;
return data ? await nocoExecute(ast, data, {}, dependencyFields) : null;
}
public async exist(id?: any): Promise<any> {

Loading…
Cancel
Save