We have a simple query in Azure DevOps that looks for all work items in a certain iteration path and, when run in the web GUI, returns System.Id, System.WorkItemType, System.Title, System.AssignedTo, System.Tags, and System.Parent. By using API call of this form:
https://dev.azure.com///_apis/wit/wiql/<query_id>
I can get a list of the columns returned by the query and links to each work item. The links do not contain the information from the columns. Presumably, I am supposed to take each work item link and form a WIQL query that will return the information that I want. Normally not a problem (excepting my unfamiliarity with WIQL), but we are pulling this information into Azure Data Factory to be committed to an SQL database and be associated with work information from other sources. ADF can pull from a Rest API to a database (I've seen, but am still learning about...), but it seems like it would be best (or perhaps only possible) to do this with a single query, not a set of queries based on the results of yet an initial query.
So, my question: Is there a single API call for Azure DevOps that will, for each work item, return the work item information associated with the query? That is, I'd like a query that will actually rather than tell me the Id, WorkItemType, etc for each work item, not a loopable listing that has to be fed to another query to get the information we want.
