Hi every one,
I would like to show the Id of all linked ticket in the result of a JQL request. For example, I am creating a JQL request like that :
project = "My Project" ORDER BY status DESC
and in the result I am displaying the list of tickets like that :
In this result table, I would like to have a new columns containing the list of the key from the related tickets to every line. Do you know if it is possible ?
I hope you can help me on this!
hello @Swaen Boutu , unfortunately for more advanced queries, you will need to install the ScriptRunner app. You can although use below built in queries
- If you want to get the list of issues linked to a particular issue
linkedIssues(issueKey)
issue in linkedIssues("ABC-100", blocks)
If you want to just see the issue link IDs from your filter results just select "Linked Issues" from the "Columns" dropdown
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
your welcome Swaen, happy to help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Swaen Boutu search the issues which is having linked issue using below JQL :-
issueFunction in linkedIssuesOf("project=CJS")
Then in Columns select "Linked Issue" ..Link issue key will be visible
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hello @Vikrant Yadav ,
Thank you for the answer, but it seams that "issueFunction" required the ScriptRunner plugin.
Is there a way to do it without this plugin, because I don't have it on my Jira subscription ?
thanks
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.