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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.