Hi Jira Team,
In our project we have a requirement that tells us to take the number of tickets and number of bugs from the latest release based on component.
Here component means Web, Android, iOS.
I am using this below the jql
project =<projectname>and issuetype = bug AND fixVersion = latestReleasedVersion()
But the above jql provides the latest release which is the first record in the releases tab. But I need the latest release based on component.(Web, Android, iOS)
In the below screenshot, I need to get the count of tickets and bugs from the android and iOS releases. it should be latest one and not older release.
| Version | Status | Progress | Start date | Release date |
Testone-Web | RELEASED | | 27-Jun-22 | 27-Jun-22 |
Testrelease two- web | RELEASED | | ######## | ######## |
Testrelease three-android | RELEASED | | | ######## |
Testrelease four-ios | RELEASED | | ######## | ######## |
Is there any way to get these results through API or JQL. Kindly help us on this.