Forums

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

Is there a way to query all the user stories with Fix versions with 4 digits Ex: 19.x.x.x. format ?

Anupampreet kaur
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!
July 15, 2019

Further details to the question asked above, am trying to query out all the user stories which has Fix version assigned in the format as 19.0.1.1 or any x.x.x.x , it has 4 digits 

For instance, In case I need to look for data of whole of last year for the multiple fixversion in format of x.x.x.x for ex fixversion in (1.0.1.1, 1.0.1.4,2.0.0.1.... ) 

how do I write a generic query ?

any other questions please let me know I will provide more details.

 

1 answer

0 votes
Taranjeet Singh
Community Champion
July 15, 2019

@Anupampreet kaur fixVersion is a system field in JIRA and you can use it in JQL to search for issues that are assigned to a particular fix version. You can search by version name or version ID (i.e. the number that JIRA automatically allocates to a version).

 

Have you tried a JQL similar to below:

project = <your project key> and issuetype = "Story" and fixVersion = "19.0.1.1" order by created DESC.

 

Let me know if it helps and provides you the required output.

Taranjeet Singh
Community Champion
July 18, 2019

@Anupampreet kaur Did my answer help resolving your query?

Anupampreet kaur
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!
July 18, 2019

Hi thank you for the details. 

I use this query to get one specific version data. 

In case I need to look for data of whole of last year for the multiple fixversion in format of x.x.x.x for ex fixversion in (1.0.1.1, 1.0.1.4,2.0.0.1.... ) 

how do I write a generic query ?

Like # people like this
Saikiran Devatha
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!
August 27, 2021

@Taranjeet Singh any way to add a dropdown showing all fix versions present on the board? TIA!

Suggest an answer

Log in or Sign up to answer