Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JQL: child issues with specific status of parent and child issues

Marcel Rode July 11, 2023

Hi, is it possible to search with default jira seach capabilitys (e.g. no use of scriptrunner) for parent issues that need to have a specific status and are also connected to child issues that need to have a specific status? I was already going through Field Reference for our Jira Version but found nothing usefull.

1 answer

0 votes
Kseniia Trushnikova
Community Champion
July 11, 2023

Hi Marcel,

You can't refer to child issues' statuses using JQL. To find all open issues that have the link "is parent of", try this:

status = Open and issueLinkType = "is parent task of"

To find parents of the specific issue, try this:

status = Open and issue in parentIssuesOf("PROJKEY-123")

Suggest an answer

Log in or Sign up to answer