You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enhanced the get_work_item tool to support the WorkItemExpand option.
It will default to WorkItemExpand.All when no specific fields are requested,
providing more complete information in the response.
|`workItemId`| number | Yes | The ID of the work item to retrieve |
20
-
|`expand`| string | No | Controls the level of detail in the response (e.g., "All", "Relations", "Fields")|
20
+
|`expand`| string | No | Controls the level of detail in the response. Defaults to "All" if not specified. Other values: "Relations", "Fields", "None"|
21
21
22
22
### Response
23
23
@@ -45,9 +45,16 @@ Returns a work item object with the following structure:
Copy file name to clipboardexpand all lines: project-management/task-management/done.md
+15
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,20 @@
1
1
## Completed Tasks
2
2
3
+
-[x]**Task 2.8**: Allow `get_work_item` to default to 'Expand All' when no specific fields are requested. There isn't usually enough information on the default Get_work_item response now.
4
+
-**Role**: Full-Stack Developer
5
+
-**Phase**: Completed
6
+
-**Notes**:
7
+
- Current implementation in `src/features/work-items/get-work-item/feature.ts` only requested minimal fields by default
8
+
- Azure DevOps API supports WorkItemExpand enum with options: None, Relations, Fields, Links, All
9
+
- When using expand parameter, we should not specify fields array
10
+
- Current schema in `src/features/work-items/schemas.ts` didn't expose expand parameter
11
+
-**Implementation**:
12
+
- Updated `GetWorkItemSchema` in `src/features/work-items/schemas.ts` to include the optional expand parameter
13
+
- Modified `getWorkItem` function in `src/features/work-items/get-work-item/feature.ts` to use `WorkItemExpand.All` by default
14
+
- Updated documentation in `docs/tools/work-items.md` to reflect the new default behavior
15
+
- Added tests in `src/features/work-items/get-work-item/feature.spec.int.ts` to verify the expanded data retrieval
16
+
-**Completed**: March 31, 2024
17
+
3
18
-[x]**Task 1.0**: Implement `manage_work_item_link` handler with tests
0 commit comments