You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I want to make a Confluence page that tracks my Jira tickets and the issues that are linked to those tickets. Till now I have done this:
project= ABC AND "Epic Link"= 'Epic1' AND status != 'closed'
I want to create a table that has Jira- key, summary, tasks, due date, status and linked issues and due dates of linked issues
I want to make sure that I show linked issues that are only linked to the current epic (that is Epic1) and also show the due dates of these issues.
I have tried doing this:-
project= ABC AND "Epic Link"= 'Epic1' AND status != 'closed' AND issuefunction in linkedIssuesOf(" "Epic Link" = Epic1 ")
but it doesn't seem to understand this issueFunction in
or issue in
Can someone please help me out
Hi @tv0110
Thank you for your question.
In JIRA Cloud you can only use the issueFunction() JQL function provided by ScriptRunner on the Enhanced Search page as described in the documentation here.
This is due to the way that Atlassian restrict how the JQL functions can interact with their infrastructure meaning we must run them in a sandbox process.
This is also documented here for your reference.
Thank you.
Kind Regards
Kate
Hello @tv0110
Welcome to the community.
Please clarify the parameters of the list you are trying to extract.
Looking at your first filter - that will get you a list of all the issues that are "children" of your Epic. Children are a special type of "link".
When you say you want the linked to your tickets, are you talking about the generic issue links like Duplicates and Relates To?
Are you looking for the issues that are linked to the Epic, or linked to the child issues in the Epic?
If you can provide an example of the issues and links that you are trying to retrieve that would also be helpful.
As @Curt Holley said, use of "issueFunction" requires that you have Scriptrunner installed on your JIRA instance. That is not a default function of JIRA.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you don't have scriptrunner, then I think you will have to name each link type that you are wanting in scope.
Something like:
project= ABC AND "Epic Link" = Epic1 and status != Closed or (issueIsDependentOn = Epic1 OR issueIsDuplicatedBy = Epic1)
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.