ListLineageRelationships
Query and list lineage relationships between source and target entities in a data map, enabling structured data management and analysis within Alibaba Cloud DataWorks environments.
Instructions
查询数据地图血缘关系列表
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| DstEntityId | Yes | 目标实体ID | |
| DstEntityName | No | 目标实体名称,模糊匹配 | |
| Order | No | 排序方向,默认为Asc,枚举值,当前支持-Asc升序-Desc降序 | |
| PageNumber | No | 分页页码,默认为1 | |
| PageSize | No | 分页大小,默认为10,最大为100 | |
| SortBy | No | 排序字段,默认为Name | |
| SrcEntityId | Yes | 源实体ID | |
| SrcEntityName | No | 源实体名称,模糊匹配 | 
Input Schema (JSON Schema)
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "DstEntityId": { "description": "目标实体ID", "type": "string" }, "DstEntityName": { "description": "目标实体名称,模糊匹配", "type": "string" }, "Order": { "description": "排序方向,默认为Asc,枚举值,当前支持-Asc升序-Desc降序", "type": "string" }, "PageNumber": { "description": "分页页码,默认为1" }, "PageSize": { "description": "分页大小,默认为10,最大为100" }, "SortBy": { "description": "排序字段,默认为Name", "type": "string" }, "SrcEntityId": { "description": "源实体ID", "type": "string" }, "SrcEntityName": { "description": "源实体名称,模糊匹配", "type": "string" } }, "required": [ "SrcEntityId", "DstEntityId" ], "type": "object" }