ListEntitiesInMetaCollection
Retrieve and filter entities within a specified meta collection in DataWorks MCP Server. Supports sorting, pagination, and fuzzy matching by entity type, name, or description for efficient data management.
Instructions
查询数据地图集合中的实体列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
EntityDescription | No | 添加实体到集合时的描述,模糊匹配,目前仅专辑类型支持 | |
EntityName | No | 实体名称,模糊匹配 | |
EntityType | No | 实体类型 | |
Id | Yes | 集合对象Id | |
Order | No | 排序方向,支持-Asc(默认)-Desc | |
PageNumber | No | 分页页码,默认为1 | |
PageSize | No | 分页大小,默认为10,最大为100 | |
SortBy | No | 排序字段,支持-Name名称(默认)-CreateTime实体创建时间 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"EntityDescription": {
"description": "添加实体到集合时的描述,模糊匹配,目前仅专辑类型支持",
"type": "string"
},
"EntityName": {
"description": "实体名称,模糊匹配",
"type": "string"
},
"EntityType": {
"description": "实体类型",
"type": "string"
},
"Id": {
"description": "集合对象Id",
"type": "string"
},
"Order": {
"description": "排序方向,支持-Asc(默认)-Desc",
"type": "string"
},
"PageNumber": {
"description": "分页页码,默认为1"
},
"PageSize": {
"description": "分页大小,默认为10,最大为100"
},
"SortBy": {
"description": "排序字段,支持-Name名称(默认)-CreateTime实体创建时间",
"type": "string"
}
},
"required": [
"Id"
],
"type": "object"
}