I think I asked this in the wrong category before. Hopefully this is the right place to ask.
I’m using forge for Jira Cloud. I’d like to display release progress in a graph so I need to get data on how many release issues are done, in progress and left to do. Querying for issues in the release and looping through them to get the data takes too long for multiple releases. How can I quickly get this data? I tried the REST endpoint /rest/api/3/version/${fixVersion}/relatedIssueCounts which examples showed has the data I need but what I get is not saticfactory:
{"self":"https://api.atlassian.com/ex/jira/967ca973-8dff-40c5-a2b8-ec2dad1ddbdd/rest/api/3/version/11505","issuesFixedCount":87,"issuesAffectedCount":0,"issueCountWithCustomFieldsShowingVersion":0}
What is the best way to get this data for the graph?