hi @John.OHare,
Welcome to the Atlassian Community.
Try this:
parentEpic= DEMO-1 - to include all issues under epic including sub-tasks
parentEpic= DEMO-1 and type in standardIssueTypes() - to include only parent tasks (stories, tasks, etc)
Danut.
Thank you for your response Danet - I used the Parent Id = "JIRA ID" method and seemed to work ok.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @John.OHare
Could you include the macro JIRA Issue and use the advanced JQL Parent = XXX to fetch related stories ?
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The quickest way is to use one of the Jira issues macros and then use this JQL search:
<issue in portfolioChildIssuesOf("<your Epic>") ORDER BY created DESC>
If you want to include the Epic itself then you will have to add that to the search.
<issue in portfolioChildIssuesOf("<your Epic>") OR key = <your Epic> ORDER BY created DESC>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.