Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to extract data of one issue type from another issue type when they are in same project

ankur.bansal February 20, 2020

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.

1 answer

2 votes
Jack Nolddor _Sweet Bananas_
Atlassian Partner
February 21, 2020

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

Suggest an answer

Log in or Sign up to answer