플로우 각 단계별 컬럼 설정기능
This commit is contained in:
@@ -85,9 +85,9 @@ class TableManagementApi {
|
||||
/**
|
||||
* 특정 테이블의 컬럼 목록 조회
|
||||
*/
|
||||
async getColumnList(tableName: string): Promise<ColumnListResponse> {
|
||||
async getColumnList(tableName: string, size: number = 1000): Promise<ColumnListResponse> {
|
||||
try {
|
||||
const response = await apiClient.get(`${this.basePath}/tables/${tableName}/columns`);
|
||||
const response = await apiClient.get(`${this.basePath}/tables/${tableName}/columns?size=${size}`);
|
||||
return response.data;
|
||||
} catch (error: any) {
|
||||
console.error(`❌ 테이블 '${tableName}' 컬럼 목록 조회 실패:`, error);
|
||||
|
||||
Reference in New Issue
Block a user