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.
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")
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.