We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b3f5a8 commit 29ae7a5Copy full SHA for 29ae7a5
.github/workflows/update-low-priority.yml
@@ -35,6 +35,7 @@ jobs:
35
const queryResult = await adoClient.queryById(process.env.query_id);
36
37
for (const workItem of queryResult.workItems) {
38
- const workItemDetails = await adoClient.getWorkItem(workItem.id);
39
- console.log(workItemDetails);
+ const workItemDetails = await adoClient.getWorkItem(workItem.id, expand:'links');
+ console.log(workItemDetails.fields['System.Title']);
40
+ console.log(workItemDetails.fields['System.Links']);
41
}
0 commit comments