You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
For anyone struggling with the same issue, here's the solution:
Replace dev.azure.com/mycompany into global and add [System.TeamProject] = @project to only see the current work items from you project:
,
"team.pinnedQueries": [
{
"account": "global",
"queryText": "SELECT * FROM WorkItems WHERE [System.AssignedTo] = @Me AND [System.TeamProject] = @project AND ([System.State] = 'New' OR [System.State] = 'Active')"
}
]
Hi,
When I query my workitems directly in Azure on
New
andActive
work items, I get one workitem as result.When I Use the pin in VSCode I receive all my workitems (16).
So it seems that the
@Me
filter is working, but the WHERE clause was dropped somewhere along the road.This is the configuration in VSCode
The text was updated successfully, but these errors were encountered: