Hello,
I want to use a color code for my features and I try to find the features that have stories in "in Progress" status so in the first look I can see them directly.
I try to use issueFunction in linkedIssuesOf but the quesry doesn't work correctly. I may use it in wrong way.
Hi saeedeh tavaf,
Sadly, you cannot achieve the desired search using standard features on Jira. For this requirement you must go for a third-party app instead. Using i.e. JQL Booster Pack you can type the following:
1) If you are using Portfolio to relate your issues
type = Story AND status = "In Progress" AND issues IN portfolioChildOf(' type = Feature ')
2) "If you are using native issue links to relate your issues
type = Story AND status = "In Progress" AND issues IN linkedIssuesOf(' type = Feature ')
(*) Note that this is just an example, you must tune above query to fit your needs.
Using this app you can also query other issues relations, check:
References:
Hope this helps you to create awesome queries <3
Hi @saeedeh tavaf , welcome to the Community.
How are you associating a story to a "feature". Also issuefunction and linkedissueof are Scriptrunner functions, do you have scriptrunner?
Some idea on how to create and use the concept of "feature" w/in Jira (OOTB):
Then lets say you chose custom field as the solution you could use the following JQL to achieve your goal.
project = abc and feature in (feat1, feat2, feat3...) and statusCategory = "In Progress"
edit the details to match your situation.
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.