query_work_items
Retrieve Azure DevOps work items by executing WIQL queries to filter, sort, and manage project tasks, bugs, and user stories.
Instructions
Execute a WIQL query. Example: SELECT [System.Id] FROM WorkItems WHERE [System.WorkItemType] = 'Bug' AND [System.State] = 'Active'
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | WIQL query string. Use SELECT [System.Id] FROM WorkItems WHERE ... ORDER BY ... | |
| top | No | Max results to return (optional, can also use TOP N in query) |