Reputation: 1
In Azure DevOps board queries if I select "Work Item Type" = "Task" then on the results it is showing Epic, Feature, User Stories, and Task. My requirement is I need to select only the tasks but it is not showing that
Upvotes: 0
Views: 332
Reputation: 1
In your query you need to write work item type = task and not IN operator. Try this then it will work and try creating fresh query
Upvotes: 0
Reputation: 4301
I use an Operator of In
as opposed to =
, and this seems to work correctly (I have to use a second query parameter to get my result list below 20,000 hits but this should illustrate how I did it:
Upvotes: 1