I want to write a JQL which will give me all the Features which are dependent on other tasks (has link type as "depends on") which are not yet completed ?
found the solution... project = ABC AND issuetype = Feature AND labels in ({your labels}) AND (issueFunction in linkedIssuesOf("status not in (Resolved, Done, Rejected)", "Impacts") OR issueFunction in linkedIssuesOf("status not in (Resolved, Done, Rejected)", "depends on")) AND component ={your component}
It looks like you're new here. Sign in or register to get started.