表类别管理

1.查询所有主题

1
2
3
4
5
6
7
8
9
10
11
listDomains(input:{start:0,count:100}){
domains{
urn
type
id
properties{
name
description
}
}
}

2.查询所有数据源

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
listIngestionSources(input:{start:0,count:100}){
total
ingestionSources{
urn
name
type
config{
recipe
executorId
version
}
}
}
}

3.添加删除编辑表

1
2
3
4
5
6
7
8
9
10
11
create table aamx_test
(
son_id bigint not null comment '子id',
parent_id bigint not null comment '父id',
create_time datetime default NULL comment '创建时间',
update_time datetime default NULL comment '更新时间',
primary key (son_id)
);

alter table aamx_test comment '分解关系';