Getting all work items assigned to my account? #574
Answered
by
mnieto
ALIENQuake
asked this question in
Q&A
-
Hi, How do I get all work items assigned to my account? And possible with the 'In Progress' status? |
Beta Was this translation helpful? Give feedback.
Answered by
mnieto
Apr 14, 2025
Replies: 1 comment
-
You can use something like this Get-VSTeamWiql -Query "Select [System.Id], [System.Title], [System.State], [System.Description] From WorkItems WHERE [System.AssignedTo] = 'youUserHere' and [System.State] = 'In Progress'" -Expand | select -ExpandProperty workitems Or you can create a query in the DevOps application and then use Get-VSTeamWiql -Id TheQueryId |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ALIENQuake
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use something like this
Or you can create a query in the DevOps application and then use