list_issues
Retrieve recently updated work items by issue type, such as defects, requirements, tasks, epics, or all. Default query returns up to 20 items per project.
Instructions
查询我最近更新的工作项,可以根据其中IssueType查询,默认查询limit为20条
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issueType | No | 事项类型,可选值为: ALL - 全部事项 DEFECT - 缺陷 REQUIREMENT - 需求 MISSION - 任务 EPIC - 史诗 | |
| limit | No | 事项数量,默认为20条 | |
| projectName | Yes | 项目名称 |
Input Schema (JSON Schema)
{
"properties": {
"issueType": {
"description": "事项类型,可选值为: ALL - 全部事项 DEFECT - 缺陷 REQUIREMENT - 需求 MISSION - 任务 EPIC - 史诗",
"type": "string"
},
"limit": {
"description": "事项数量,默认为20条",
"type": "string"
},
"projectName": {
"description": "项目名称",
"type": "string"
}
},
"required": [
"projectName"
],
"type": "object"
}