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.
Hello,
I have the following JQL that brings back a couple of Epics
issueFunction in linkedIssuesOf('issueFunction in linkedIssuesOf(\'issueFunction in linkedIssuesOf(\\\'issueFunction in linkedIssuesOf(\\\\\\\'key = PRJ-919\\\\\\\', "is delivered by")\\\', "is implemented by")\', \'is implemented by\')', 'contains')
When i then try and use the above JQL for my subquery:
issueFunction in issuesInEpics("issueFunction in linkedIssuesOf('issueFunction in linkedIssuesOf(\\'issueFunction in linkedIssuesOf(\\\\\\'issueFunction in linkedIssuesOf(\\\\\\\\\\\\\\'issueFunction in linkedIssuesOf(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'key = PRJ-919\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\', \"is delivered by\")\\\\\\\\\\\\\\', \\\\\\\\\\\\\\'is implemented by\\\\\\\\\\\\\\')\\\\\\', \\\\\\'is implemented by\\\\\\')\\', \\'contains\\')')")
It brings back 0 results.
Can anyone let me know what I'm doing wrong?
Cheers
Could you please explain what exactly you are trying to get from your JQL Query and Sub Query? I am requesting this clarification to try and provide a better solution.
Thank you and Kind regards,
Ram
Hello Ram,
Thanks for your message. We are creating some JQL that brings back all the issues with a specific linkage to the issue in question. These are issues spanning over different projects but are all ultimately linked to the original issue in some capacity.
So we have 'Issue A' In the above scenario, Issue A has the key of PRJ-919.
Issue A 'is delivered by' Issue B.
Issue B 'is implemented by' Issue C
Issue C 'Is Implemented by' Issue D
Issue D 'Contains' Issue E
Issue E are the epics, and then we need to find all the children of the epics.
This will then show us all the relevant issues linked from Issue A down to the Children of Issue E.
The JQL below works fine and brings back all the tasks we need between A and E.
key = "PRJ-919"
OR issueFunction in linkedIssuesOf("key = PRJ-919", "is delivered by")
OR issueFunction in linkedIssuesOf('issueFunction in linkedIssuesOf("key = PRJ-919", "is delivered by")', "is implemented by")
OR issueFunction in linkedIssuesOf('issueFunction in linkedIssuesOf(\'issueFunction in linkedIssuesOf("key = PRJ-919", "is delivered by")\', "is implemented by")', "is implemented by")
OR issueFunction in linkedIssuesOf('issueFunction in linkedIssuesOf(\'issueFunction in linkedIssuesOf(\\\'issueFunction in linkedIssuesOf(\\\\\\\'key = PRJ-919\\\\\\\', "is delivered by")\\\', "is implemented by")\', \'is implemented by\')', 'contains')
So the final bit I cant get to work is getting that final line as a subquery in the 'issuesinEpics' issue function. This will bring back the children of those epics and complete the query.
Cheers
Phil
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.