如何查询 WIQL 中不存在的字段

How to query for a nonexistent field in WIQL

我正在尝试获取特定字段为空的工作项。我试过像

这样的查询
And [Dell.SDLC.CapabilityID] Not Contains [Any]
And [Dell.SDLC.CapabilityID] Is Empty
And [Dell.SDLC.CapabilityID] = ''

其中 return 0 个结果。我相信这是因为当未指定字段时,它根本不会作为工作项中的字段之一出现。我查看了 JSON 中的一些此类工作项,但该字段不在其中。有没有办法 return 所有不存在字段的工作项?

我在测试查询时,发现如果该字段为空,则在查询中将其留空即可。

例如,请参考下图

有 6 个特征,其中 4 个的 testsignleline 字段为空。 添加“testsignleline”字段空查询。结果:

在 wiql 格式中,这是 "SELECT [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags], [Custom.testsignleline] FROM WorkItems WHERE [System.TeamProject] = @project and [System.WorkItemType] = 'Feature' and [System.State] <> '' and [Custom.testsignleline] = '' ORDER BY [Custom.testsignleline]"