Hello,
I would like to have a JQL query which returns the list of JIRAs which are under epics that contain a specific label.
Assuming...
PROJ-123 and PROJ-124 have the label: 'CoolFeature'
...the result should be:
@Marios K Welcome to the community!
It seems that there was almost an exact question here: https://community.atlassian.com/t5/Jira-questions/How-to-get-stories-linked-to-epics-that-have-a-specific-label/qaq-p/1322917
Hello Lukasz,
Thank you. The link you've shared was perfect and found the solution there.
For completeness, here is my final query:
project = <Project name> AND labels in (<label>) OR (issueFunction in linkedIssuesOf("labels = <label>", "is epic of")) AND (resolution = Unresolved) order by priority
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.