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
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....
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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)
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.