Forums

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

Query for all bugs under all story in fixVersion release

beersonic
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
January 13, 2020

I'm running a project using fixVersion release to control release version, e.g. fixVersion = 1.0.0

There are many bugs which are raised against stories

How can I query all bugs under all story which fixVersion = 1.0.0 ?

Thanks

3 answers

2 votes
Jack Nolddor _Sweet Bananas_
Atlassian Partner
January 14, 2020

Hi beersonic and welcome,

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 all bugs under all story which fixVersion = 1.0.0

type = Bug AND issue IN linkedIssuesOf("type = Story AND fixVersion = 1.0.0")

 

Using this app you can also query other issues relations, check:

 

References:

 

Hope this helps you to create awesome queries <3

Kind regards

1 vote
Muhammad Ramzan(Atlassian Certified Master)
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 13, 2020

You can use the following query with the jira built in functions , but you can only get linked issues for a single issue id.

fixVersion = 1.0.0 and issuetype = story and issue in linkedIssues(storyid,linktyoye)

 

If you want to get for all bugs linked to stories inside a specific version, you need to use some plugins like  JQL Search Extensions for Jira & reports

 

Following query will get all linked bugs in all stories for fixVersion = 1.0.0

 

issue in linkedBy("type=Story") and type=bug and fixVersion =1.0.0

 

Reference:

https://jqlsearchextensions.atlassian.net/wiki/spaces/SEARCH/pages/30497099/JQL+Reference+Server#JQLReference(Server)-LinkType

0 votes
Lenin Raj
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 13, 2020

Hi @beersonic 

If the bug tickets are created with the correct issue type, then you can use 'type' and 'fixVersion' fields in the JQL search. 

https://confluence.atlassian.com/jirasoftwarecloud/advanced-searching-fields-reference-764478339.html

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events