I would expect to be able to query linked issues out of box for Jira....to my suprise or lack of understanding I cannot find a way to track linked issues unless i tag them with a label or component.
The purpose for this is to provide reporting on issues that get linked to a Change Request project that tracks PROD enviroment changes.
Hi @Shawn Masters ,
Does this help? https://jira.atlassian.com/browse/JRACLOUD-25640
We use a 3rd party JQL extension which offers a function linkedissuesfromfilter
So I create a filter 123 to track all CloudOps work, and then create another filter 456 which references the first filter. This will show me anything in my project that is linked to any results in first filter.
Project in (XYZ) AND status not in (Canceled, Cancelled) AND issueLinkType in (blocks, "Blocks Integration Testing") AND issue in linkedIssuesFromFilter(XXXXX) ORDER BY Sprint
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you looking for
issue in linkedIssues(ABC-123)
or are you looking for something else?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I need it to be a bit more flexible. Since its a daily report I need the JQL to be able to show linked issues from that project somehow.
something like,
Project = X and linkedIssue in Project "Change Request" and Status != Closed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am also in the same situation I would to know how to query linked issues in a different project and a status as Shawn above.
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.
We use a 3rd party JQL extension which offers a function linkedissuesfromfilter
So I create a filter 123 to track all CloudOps work, and then create another filter 456 which references the first filter. This will show me anything in my project that is linked to any results in first filter.
Project in (XYZ) AND status not in (Canceled, Cancelled) AND issueLinkType in (blocks, "Blocks Integration Testing") AND issue in linkedIssuesFromFilter(XXXXX) ORDER BY Sprint
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.