I need a JQL statement that will find all issues linked to epics that have reached a particular state in their workflow. We do a fair amount of work in getting our epics set up before placing them into work in process and need to filter out the noise of epics in the early stages of their life cylce.
This worked for me
"Epic Link" = EPIC-123
Done -
issueFunction in hasLinkType("Epic-Story Link") and issuetype = Epic and status = "R&D Backlog"
Too bad you can't use the best JIRA plugin - script runner just becasue your using ondemand!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is the JQL which I tried :
"Epic Link" = Epic ticket(ABC-12, which is Epic).
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.
Done -
issueFunction in hasLinkType("Epic-Story Link") and issuetype = Epic and status = "R&D Backlog"
Too bad you can't use the best JIRA plugin - script runner just becasue your using ondemand!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tarun good find on the Epic story Link !
Is there a reference on the Data Types in JCL for Jira
Please advise
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jay,
I'm afraid this isn't possible in OnDemand. For the download version there's a plugin called Script Runner. And do stuff like:
issueFunction in subtasksOf("project = XXX AND issuetype = Task AND status = Closed")
But I'm afraid that isn't possible on the OnDemand version (yet).
Best,
Maarten
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Maarten,
Your answer will give subtasks but the question is about linkedIssues not subtasks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Tarun, but I see I should have been more careful with my wording. Not the status of the issue but the status of epic it is linked to. I don't know if this is possible but it would be more like.
"Epic Link" in (All Epics with status = "R&D Backlog")
Is there a syntax for the stuff in parenthesis?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
"Epic Link" is not EMPTY and Status = " XYZ"
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.