Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

create a query in Visual Studio Team Service with unassigned bugs

How can i create a query for list bugs which are unassigned for current sprint

I tried setting assigned to empty with = operator and contains operator

like image 865
AbdulKareem Avatar asked May 17 '17 06:05

AbdulKareem


1 Answers

Leaving the assigned to value empty in the query will give you the work items which are unassigned. The query you want should be like this:

Assigned To =

And Work Item Type = Bug

And Iteration Path = @CurrentIteration

like image 185
Kevin Avatar answered Nov 05 '22 08:11

Kevin