I am working with the Azure APIs and the VisualStudio.Services.Client.
My goal is to get a list of test Cases associated with a User Story, so far I'm here:
VssConnection connection = new VssConnection(new Uri("https://{myOrg}.visualstudio.com"),
new VssBasicCredential("UserName","SuperSecretPassword"));
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();
var ticket = witClient.GetWorkItemAsync(1234).Result;
Which returns me my user Story.
Question: I want to get at any linked items to this to find my Test Cases, but can't see any way to do this through the UI (so i can call the query) or via the APIs directly.
Any help would be really appreciated!