Very quick question,
I am trying to find all the child issues (story, task) for an Epic
I used below query:
Project = "Project Name" AND issuetype in (Story, Task) AND "Epic Link" = Epic-ID
the above query doesn't work.
I also tried with the below query:
project = "Project Name"AND issuetype in (Story, Task) AND parentEpic = EPIC-ID
the above query doesn't work.
any thoughts?
I might be late to reply but this query will give you the required results that you are looking for, i am using this plugin where i extracted this query for you.
Query: issue in allIssuesInEpic("Epic ID")
Result: will return all issues including sub tasks linked to issues under the specified epic id
example:
epic id: test-24
issue in allIssuesInEpic("TEST-24")
in above example , it returns epic its self, user story id 10 and two sub tasks which are linked to user story id 10
Hello!
Try this one:
project = CC AND "Epic Link" = CC-2 OR parent in ("CC-2")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would start with one piece at a time and then add to it until something disappears.
For example, "Epic Link" = ABC-123 and see if anything comes up. Then add project, etc.
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.