Skip to end of banner
Go to start of banner

Hierarchical JQL functions

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

Version 1 Next »

subtasksOf()

Search for subtasks of issues.

Examples

issue in subtasksOf("JQL")

issue in subtasksOf("type = Story")

 finds the subtasks of the issues which are in the Story type.

OR

issue in subtasksOf("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 epicsOf("JQL")

issue in epicsOf("type = Story and priority = Critical")

 finds the epics of the issues in the Story type whose priorities are Critical.

OR

issue in epicsOf("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 parentsOf("JQL")

issue in parentsOf("type = Story and priority = Critical")

 finds the parents of the issues in the Story type whose priorities are Critical.

OR

issue in parentsOf("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 issuesInEpics("JQL")

issue in issuesInEpics("priority = Critical")

 finds the issues in epics whose priorities are Critical.

OR

issue in issuesInEpics("key in (GOOJQL-1, GOJQL-2, GOJQL-3)")

finds the issues in epics of the specific epic issues in the JQL.

  • No labels