Forum Discussion
Connecting to Azure DevOps Online from DataFlow
- 2 years ago
I don't remember getting the revisions for the reports I have built, but I found this on the doc: https://learn.microsoft.com/en-us/azure/devops/report/extend-analytics/odata-query-guidelines?view=azure-devops#-do-use-workitemrevisions-entity-set-to-load-all-the-revisions-for-a-given-work-item
There is an entity "workitemrevision". That might help. Example:
https://analytics.dev.azure.com/{OrganizationName}/_odata/{version}/WorkItemRevisions? $filter=WorkItemId eq {id} &$select=WorkItemId, TitleRegards
Thanks ibarrau
Yes, at present I have identified the oData as alternative but I am facing issues to get the relavent WorkItem Revisions, which was easy using the Analytics View. Have you every tried to get these revisions using oData, if so please gude me.
Thank you for your reply. Lets see if any expert here can suggest anything.
Thanks,
Prabhat
I don't remember getting the revisions for the reports I have built, but I found this on the doc: https://learn.microsoft.com/en-us/azure/devops/report/extend-analytics/odata-query-guidelines?view=azure-devops#-do-use-workitemrevisions-entity-set-to-load-all-the-revisions-for-a-given-work-item
There is an entity "workitemrevision". That might help. Example:
https://analytics.dev.azure.com/{OrganizationName}/_odata/{version}/WorkItemRevisions?
$filter=WorkItemId eq {id}
&$select=WorkItemId, Title
Regards