|
|
@ -773,9 +773,12 @@ export class GqlApiBuilder extends BaseApiBuilder<Noco> implements XcMetaMgr { |
|
|
|
|
|
|
|
|
|
|
|
tables.push(...relatedTableList.map(t => ({ tn: t }))); |
|
|
|
tables.push(...relatedTableList.map(t => ({ tn: t }))); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
tables = (await this.sqlClient.tableList())?.data?.list?.filter( |
|
|
|
tables = (await this.sqlClient.tableList())?.data?.list |
|
|
|
({ tn }) => !IGNORE_TABLES.includes(tn) |
|
|
|
?.filter(({ tn }) => !IGNORE_TABLES.includes(tn)) |
|
|
|
); |
|
|
|
?.map(t => { |
|
|
|
|
|
|
|
t.order = ++order; |
|
|
|
|
|
|
|
return t; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
// enable extra
|
|
|
|
// enable extra
|
|
|
|
tables.push( |
|
|
|
tables.push( |
|
|
|