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.
@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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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 ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Taranjeet Singh any way to add a dropdown showing all fix versions present on the board? TIA!
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.