Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For a given JQL subquery, it finds parents of resulting issues. It supports a standard Jira Hierarchy Epic → Story → Task → Subtask.

Examples:

issue in parentsOfIssuesInQuery("project='EXAMPLE' and typeissuetype=story") finds all parents of stories in project EXAMPLE.
issue in parentsOfIssuesInQuery("assignee=currentUser()") finds parents of all of my issues.

...

For a given JQL subquery, it finds children of resulting issues. It supports a standard Jira hierarchy Epic → Story → Task → Subtask.

Examples:

issue in childrenOfIssuesInQuery("project='EXAMPLE' and typeissuetype=Epic") finds all epics in initiatives stories and tasks in project EXAMPLE.
issue in childrenOfIssuesInQuery("assignee=currentUser()") finds children of all of my tickets.

...