From my understanding, all issues created under an Epic do not inherit the component of the parent Epic.
Let's say I tag certain epics with component "projectA", but all my linked stories are not tagged. Could I use JQL to find all stories within all the epics tagged with component "projectA"?
I'm on OnDemand for JIRA.
Please try:
issueFunction in linkedIssuesOf("component = projectA", "is Epic of")
using Script Runner
You cannot do that with a single jql query. THink about creating a script that will do that through iteration (find epics with project A and search for the child of each) or creation of gadget that will do the same job.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just to clarify here is an example:
I wanted a JQL that would give me if I selected for component "projectA", it would show Issue-101, Issue-102, Issue-104
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try the following jql:
"Epic Link" is not EMPTY AND component = "projectA"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for replying Alexey. This only gives me the Epic tagged "Project A", but not the issues that are children of that.
I clarified the question a bit more above.
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.