In TFS, you can set up a work item query with a date offset like
Date > @Today - 7
Is is possible to use another field as the offset instead? Like, say you have [CustomOffset] that is an Integer. Is it possible to do something to the affect…
I have this WIQL, who's purpose is to find the user assigned to the work item.
var wiql = string.Format("SELECT [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State]" +
" FROM WorkItems"…
Here is something that I can do from Visual Studio, but cannot seem to do through the TFS API using WIQL.
SELECT *
FROM WorkItems
WHERE WorkItemType = Bug
AND Tags CONTAINS 'MyTag'
AND Tags DOES NOT CONTAIN 'OtherTag'
How do I query with a 'DOES…
in TFS I am struggling to produce a query that searches the description field for an exact phrase e.g. "DO 1.2".
The query matches both DO and 1.2 and DO1.2 when I really want to just match the exact string.
Sample of the clause in the…
Is there a way to retrieve the contents of a Team Query using WIQL?
Background: I'm throwing together an RSS feed for new bugs entered into TFS. I could write a specific WIQL query for which work item types and states to include, but I'd rather…
I need to try retrieve a list of changesets that are linked to certain work items and display info on them in the program. But I'm having a lot of trouble figuring it out.
I have been searching the internet extensively for 4 days and have come up…
I am trying to display the time taken to close the user story via WIQL query, but getting an error as incorrect query, can anyone please let me know how to to do.
Query:
SELECT
[System.Id],
[System.WorkItemType],
[System.Title],
…
I am trying to use the Azure DevOps WIQL to pull a list of work items that have change during a particular date range.
I know that you can pull the work items from a certain date till today, but I want to be able to query a range. Doing something…
This question is about Azure Boards and querying Work Items.
My use case is:
I have different projects set up
epics and features are maintained in a global planning project
stories life in the product projects
the final setup will be quite huge…
first question here.
I am developing a program that needs to query my azure devops organization and return a list of work item references filtered by System.Tag and System.TeamProject.
To do this, I decided to use azure-devops-node-api's…
I have a query listing all features and their child/related work-items.
Is there a way not to display the features (parents) itself? Just a flat list of all work-items having a link with a feature in this project.
I try to query the work item data to get a flat list of PBIs that belong to a given Epic with a parent relation ship Epic > Feature > PBI.
Wiql seems to be limited in this regard, I can't find a "join" clause.
In SQL, I'd do it somehow like this…
In ADO I have a single parent work item with child work items. The children work items, in turn have related work items. The number of child items will grow as time progresses.
What I'm trying to get is the list of the related work items. This would…
I wanted to know the status of the pull request associated with a work item on the board. If possible able to filter on status.
Or
At minimum Is it possible to get the pull request details with WIQL.
I think this question may be spawned from lack of knowledge, but here we go...
I am trying to write a new team query (using the new query option of team explorer, in VS 2010) what I want is fairly simple; essentially a list of work items whos…