I have a project in my Jira where I have 3 issue types :
- Features, - Story and -Test Scenario
My feature contains stories and then my stories contain test scenarios.
Now we have given our development fix version number in the feature issue type field and not duplicating that 'Fix version' field in our story and test scenario section.
Now when i am writing a JQL for issue type - Test scenario then I want to check for 'fix version = 1.x) how many scenarios passed or failed nothing is appearing on my screen.
Hi Ankur,
Sadly you cannot achieve the desired search using standard features on Jira, you must go for a third-party app instead. Using i.e. JQL Booster Pack you can type the following:
Search Test Scenarios under a given Feature FixVersion (v1.1.2):
type = "Test Scenario" AND issue in linkedIssuesOf("type = Story AND issue IN linkedIssuesOf('type = Feature AND fixVersion = 1.1.2')")
(*) Note that you must to tune this JQL to meet your requirements, don't hesitate to share with us how in fact elements are linked for a better support.
Using this app you can also query other issues relations, check:
References:
Hope this helps you to create awesome queries <3
Kind regards
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.