Hello everyone!
First of all, I'm using scriptrunner in order to get most of the information I need.
Structure
TIP-1 (initiative)
Epic-1
Epic-2
Story
Sub-task
This query returns all the epics that has TIP-1 as a parent link: (not dynamic but that's ok)
issueFunction in hasLinks("is Epic of") AND "Parent Link" = TIP-1
Now let's get into the nitty and gritty ;)
This query returns all storys, issues and subtasks based on a list of epics:
"Epic Link" in (epic-1,epic2) OR issueFunction in subtasksOf("\"Epic Link\" in (epic1,epic2)")
In the above query, I would like it to return all subtasks,issues,storys etc based on a dynamic list that I get from the first query.
Since the epics in TIP-1 tend to change, some added, some deleted etc, I can't have a static list when getting all the subtasks etc.
Is there anyone out there that can help me out, I'm slowly losing my mind :D
So I solved it, clearly I am a dummy :)
I solved it by traversing from the initiative instead of the epic; using the following query:
issuekey in childIssuesOf("TIP-1") and issuetype not in (epic)
Which returns all bugs, tasks, storys, subtasks etc.
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.