Hi,
can I create a query to use the results from another query?
e.g.: I have a query that will show me all EPIC of a specific fixVersion -> I will have 25 EPICs.
Now I want to use this result to get all children of the EPIC.
Something like this: "Epic Link" = (savedFilter = "MyFilter")
As far as I know, there is no such possibility using build-in jql queries.
You can achieve it using for example ScriptRunner JQL function:
issueFunction in issuesInEpics (Subquery)
Docs: https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_issuesinepics
In your case it should be something like:
issueFunction in issuesInEpics("fixVersion='1.0'")
Best regards,
Piotr
perfect thanks! that was what I was looking for
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.