edtro / EdTro.AzureDevOps.Extensions.querybasedboards

Query Based Boards enables a user to visualize the result of work item queries as a board and track the dependencies.
MIT License
23 stars 2 forks source link

Showing parent in field card not working #70

Closed nOrphf closed 1 year ago

nOrphf commented 1 year ago

Hi

When I add { "name":"System.Parent", "title":"Parent" } To a query configuration I get a blank list in the query-board.

edtro commented 1 year ago

dear @nOrphf ,

Please include some more information, like if it is on the Azure DevOps Services (online) or Azure DevOps Server (on-prem + include the version) and the full json used as a config.

If I am using the following config (online), it works:

{ "settings":{ "showFilter":true, "zoomLevel": 4, "showStoryPoints": true, "showTags": true }, "fields":[
{ "name":"Custom.Technology", "title":"Technology",
"filter": true
}, { "name":"System.Parent", "title":"Parent" } ], "styleRules": [ { "field": "Microsoft.VSTS.Common.Priority", "value": "1", "color": "#FF0010" } ] }

Kr Edward

edtro commented 1 year ago

Closing the issues

JamborJan commented 1 year ago

Only FYI: I found that the field System.Parent is only working when using the Azure DevOps cloud service. Using Azure Devops Server will show an error stating:

No results...
Please review the query and/or filter.

Testet wiith Azure DevOps Server 2022 and 2020. I'm not sure if there is another field to use or if the internal API is not supporting this field when the on premises server is used.