I have a query that returns Feature numbers (Epic Links as Key). I want to use this query in another query to return me stories under the list of features returned by earlier query
Hello @Paresh Magar ,
Cristiano, from the Appfire team here.
Using JQL Search Extensions for Jira, you will be able to query for stories under the list of features from your previous query saved as a filter.
The following query should help you out with that:
issues in childrenOfIssuesInQuery("filter='Epic Keys'") AND issuetype = Story
Feel free to contact our support if you have any questions about this query or our plugin.
Regards.
Maybe you can use something like that:
issue in portfolioChildIssuesOf("ABC-123") and issuetype = 'Story'
portifólio function getting all childs and child of childs up to subtask from a Epic, Feature or Initiative.
Another approach could be grouped issues based on a label, version or a customfield.
Regards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to the community.
JQL doesn't support the keyword where.
What you want to achieve is not possible with ootb JQL, you will need to look at 3rd party marketplace apps like;
JQL search extensions or JQL tricks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.