I created a list of Insight objects. Each Insight object has one or more related issues. Let me give an example: Issue Jira ABC-100 which has a reference to Object1, issue Jira ABC-101 which has a reference to Object2. Jira Issue ABC-103 which has a reference to Object1. And so on. I am trying to figure out how I can use Jira Insight's report generator to generate a list in this manner:
show me all issues that have a link to Object1
or
show me all insight objects and for each object all issues linked to each object.
Can this be done with Jira Insight reports?
The documentation on Insight, I notice, is still very fragmented and not very up to date years after the acquisition of Riada by Atlassian.
I don't think there is anything in the Insight reports that can show much about linked issues other than the "issue count" report
But I think you can get some of what you want with pure JQL/Jira Dashbaord.
For all issues linked to a specific object, use the iqlFunction in jql.
e.g.
InsightCustomField in iqlFunction("Name = Object1")
For all objects, you might just use a JQL like:
InsightCustomField is not empty
Then use something like a 2-dimensional filter statistics gadget.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.