Need query to get list of issues, which are linked to a issue and sub tasks of that issue

Vramana November 18, 2014

Example: I have a issue JIRA - 100. The linked issue is JIRA - 101 and sub task issues are JIRA - 105, JIRA - 109, ETC...

How to get all these issues through query

1 answer

1 vote
Asael Sepúlveda November 19, 2014

parent = "ISSUEID" or issue in linkedIssues("ISSUEID")

 

the linkedIssues function finds all issues linked to the specified issue (https://confluence.atlassian.com/display/AOD/Advanced+Searching+Functions#AdvancedSearchingFunctions-linkedIssues())

Vramana November 19, 2014

Hi, Thank You. It's help full to me. I have one more question that can we write a query to get list of parent issues, i would like to get list of parent issues. if any issue doesn't have sub task that may be the parent? Please answer if it is possible.

Asael Sepúlveda November 19, 2014

You can do something like this: issuetype in standardIssueTypes() That will return all issues that can be a parent (wether they have a sub task or not) If you want to search for subtashs only, you can do issuetype in subTaskIssueTypes() Here's the full documentation on issue searching: https://confluence.atlassian.com/display/JIRA/Searching+for+Issues

Vramana November 19, 2014

I understood well thank you...

Suggest an answer

Log in or Sign up to answer