search_work_items
Search for Azure DevOps work items using WIQL queries to find specific tasks, bugs, or user stories within a project.
Instructions
Searches for work items using a WIQL (Work Item Query Language) query.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | Yes | The name or ID of the project. | |
wiql_query | Yes | The Work Item Query Language (WIQL) query. |
Input Schema (JSON Schema)
{
"properties": {
"project": {
"description": "The name or ID of the project.",
"type": "string"
},
"wiql_query": {
"description": "The Work Item Query Language (WIQL) query.",
"type": "string"
}
},
"required": [
"project",
"wiql_query"
],
"type": "object"
}