JQL 5.1 query does not display a particular field

走远了吗. 提交于 2020-01-05 07:37:51

问题


"Number of open Subtasks" =0

Error: the field does not exist or you don't have permission to view it.

JIRA don't apply Field level security permissions: see https://jira.atlassian.com/browse/JRA-1330

even then this error.

this query was working on JIRA 4.1 but after transition to JIRA 5.1, its throws that errors.


回答1:


project=PROJECT_KEY AND resolution = Unresolved AND 
    issuefunction not in parentsOf("project=PROJECT_KEY AND resolution = Unresolved") AND  
    issuefunction in parentsOf("project=PROJECT_KEY")

It's quite complicated but it will find all issues that have some subtasks and all of these subtasks are closed. If you want it to find open issues without subtasks as well, delete last line.



来源:https://stackoverflow.com/questions/28107401/jql-5-1-query-does-not-display-a-particular-field

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!