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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.