JQL for Fixversion

Denisa Holečková July 30, 2020

Hi,

I would like to ask you if is possible to write query, that shows fix versions in unreleased versions but only unreleased versions that contains issues only in status DONE.

 

Thank you so much for help

2 answers

0 votes
Denisa Holečková July 30, 2020

Hello @Sachin thanks for quick response but, there are also issues in status != Done. But I need to show fixversion that is unreleased, but all issues in version are Done....

0 votes
Sachin
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.
July 30, 2020

Hello @Denisa Holečková , give this a try -

- project = "projectname" AND fixVersion in unreleasedVersions() AND status = done
- project = "projectname" AND fixVersion in unreleasedVersions() AND resolved is not EMPTY 


Sachin
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.
July 30, 2020

hello @Denisa Holečková , below query will give you all the issues that are in status done or resolved (you can also include other statused) and issues in fixVersions V1, V2, V3 (make sure you provide the unreleased versions here)

project = projectname AND fixVersion in ("V1, V2, V3") AND fixVersion in unreleasedVersions() AND status in (done, resolved)

Suggest an answer

Log in or Sign up to answer