Hierarchical JQL functions Cloud
: available in Issue Navigator.
subtasksOf()
Search for subtasks of issues.
Examples
issue in subtasksOfSubQuery("JQL")
issue in subtasksOfSubQuery("type = Story")
finds the subtasks of the issues which are in the Story type.
OR
issue in subtasksOfSubQuery("key in (GOOJQL-1, GOJQL-2, GOJQL-3)")
finds the subtasks of the specific issues in the JQL.
epicsOf()
Search for epics of issues.
Examples
issue in epicsOfSubQuery("JQL")
issue in epicsOfSubQuery("type = Story and priority = Critical")
finds the epics of the issues in the Story type whose priorities are Critical.
OR
issue in epicsOfSubQuery("key in (GOOJQL-1, GOJQL-2, GOJQL-3)")
finds the epics of the specific issues in the JQL.
parentsOf()
Search for parents of issues.
Examples
issue in parentsOfSubQuery("JQL")
issue in parentsOfSubQuery("type = Story and priority = Critical")
finds the parents of the issues in the Story type whose priorities are Critical.
OR
issue in parentsOfSubQuery("key in (GOOJQL-1, GOJQL-2, GOJQL-3)")
finds the parents of the specific issues in the JQL.
issuesInEpics()
Search for issues in epics.
Examples
issue in issuesInEpicsOfSubQuery("JQL")
issue in issuesInEpicsOfSubQuery("priority = Critical")
finds the issues in epics whose priorities are Critical.
OR
issue in issuesInEpicsOfSubQuery("key in (GOOJQL-1, GOJQL-2, GOJQL-3)")
finds the issues in epics of the specific epic issues in the JQL.
childrenOfSubQuery()
Search for child issues.
Examples
issue in childrenOfSubQuery("JQL")
issue in childrenOfSubQuery("type = Initiative")
finds the child issues of Initiatives.
epicsWithAllResolved()
Search for epic issues with all children issues are resolved.
Examples
issue in epicsWithAllResolved("JQL")
epicsWithAllUnresolved()
Search for epic issues with all children issues that are unresolved.
Examples
issue in epicsWithAllUnresolved("JQL")