in src/service/WiqlService.ts [49:63]
currentIterationName() {
return `
SELECT
[System.Id],
[System.Title],
[System.State],
[System.IterationPath]
FROM WorkItems
WHERE
(
[System.TeamProject] = @project
AND [System.IterationPath] = @CurrentIteration
)
`;
},