Closed bart029 closed 6 days ago
Hi, I will test it and get back to you as soon as possible
Any updates??
Still looking for an update to this issue.
We are currently working on many extensions, and we've added your issue to our backlog. We appreciate your patience and understanding as we strive to address it as soon as possible.
HI guys here is a solution you will get the same result SELECT [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] FROM workitems WHERE [System.TeamProject] = @project AND [System.AreaPath] UNDER 'Global Goals\Energy' AND ([System.WorkItemType] <> 'Bug' OR [System.State] <> 'New')
Describe the bug I created a query in the WIQL playground that returns results when run in the playground. When I click on the Open in queries button, an error is returned in ADO and no results are returned. WIQL playground should not support a query that results in an error in ADO.
Environment:
Screenshots Query executed in WIQL playground:
Error shown when clicking on Open in queries button:
To Reproduce Steps to reproduce the behavior:
Expected behavior Either the WIQL playground should catch the error and give an informative message to the user within the playground OR the query should execute in ADO Queries in the same way it executes in the Wiql playground.
Additional context I have isolated the issue causing this behavior to the "AND NOT" clause seen in line 10 combined with the "=" operator in line 11 and 12 of my attached query. If it is replaced with "AND" and "<>" the error disappears.