-
Hello, is there a way to get access to the work items of a project that belongs to a specific area and iteration path that are not necessarily associated to any Pull Requests. I tried looking out for this is samples and documentation but couldn't find any help. What we tried (Since it says global list of work items, I assumed it would fetch every items in a project, but its just fetching the linked work items to the repo. And our use case is to get all the work items of a project on some filter(By type, area and iteration) in the same project)
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
You have two options I think Using If blocksYou would need to add
Write a custom extensionYou could write some Javascript to write and enhanced filtering foreach. This sample does a filter loop, but would need some editing |
Beta Was this translation helpful? Give feedback.
-
This feature is available in 3.71.x There is a new parameter where you can provide the WHERE part of the WIQL. This should be edited to select the WI you require.
Note you cannot use The results of this WIQL will be available in a new independent template array
|
Beta Was this translation helpful? Give feedback.
This feature is available in 3.71.x
There is a new parameter where you can provide the WHERE part of the WIQL. This should be edited to select the WI you require.
Note you cannot use
@project
,@currentiteration
or@me
, but@today
is ok. To work out the WHERE clause I recommend using the WIQL Editor extensionThe results of this WIQL will be available in a new independent template array
queryWorkItems
i.e. it is completely separate from all the other W…