ListMetaCollections
Query and retrieve lists of data map collections, including categories, albums, and subcategories, with options for filtering, sorting, and pagination on the DataWorks MCP Server.
Instructions
查询数据地图集合列表
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Administrator | No | 集合管理员ID,专辑类型有效,默认为当前用户ID | |
| CreateUser | No | 创建者用户ID,专辑类型有效,默认为当前用户ID | |
| Description | No | 集合描述,模糊匹配 | |
| Name | No | 集合名称,模糊匹配 | |
| Order | No | 排序方向,支持-Asc(默认)-Desc | |
| PageNumber | No | 分页页码,默认为1 | |
| PageSize | No | 分页大小,默认为10,最大为100 | |
| ParentId | No | 父节点集合对象ID | |
| SortBy | No | 排序字段,支持-Id(默认)-Name名称-CreateUser创建者ID-CreateTime创建时间-ModifyTime修改时间 | |
| Type | Yes | 集合类型,可枚举,取值为-Category类目-Album数据专辑-AlbumCategory专辑子类目 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"Administrator": {
"description": "集合管理员ID,专辑类型有效,默认为当前用户ID",
"type": "string"
},
"CreateUser": {
"description": "创建者用户ID,专辑类型有效,默认为当前用户ID",
"type": "string"
},
"Description": {
"description": "集合描述,模糊匹配",
"type": "string"
},
"Name": {
"description": "集合名称,模糊匹配",
"type": "string"
},
"Order": {
"description": "排序方向,支持-Asc(默认)-Desc",
"type": "string"
},
"PageNumber": {
"description": "分页页码,默认为1"
},
"PageSize": {
"description": "分页大小,默认为10,最大为100"
},
"ParentId": {
"description": "父节点集合对象ID",
"type": "string"
},
"SortBy": {
"description": "排序字段,支持-Id(默认)-Name名称-CreateUser创建者ID-CreateTime创建时间-ModifyTime修改时间",
"type": "string"
},
"Type": {
"description": "集合类型,可枚举,取值为-Category类目-Album数据专辑-AlbumCategory专辑子类目",
"type": "string"
}
},
"required": [
"Type"
],
"type": "object"
}