Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to get Task when ALL subtasks with type CODING are closed?

Tomasz
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 13, 2022

Hi,

I have problem. I have type:

  • History
    • Coding
    • Test

 

I need list list History when ALL subtasks CODING are Done/Finished .

 

type = History AND issueFunction in parentsOf("issuetype = Codinf and resolution = Finished")

 

With my filter, I get a list in which at least one task Coding is closed, not all.

How to include all Coding tasks with a closed status

 

 

1 answer

1 vote
Corey Blanding
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 14, 2022

Hello Tomasz,

 

Welcome to the Community!

It looks like this may be involving something (issueFunction) from the Scriptrunner plugin, which I'm afraid I'm not personally very familiar with. However, it seems to me like you may have more success with using

type = History AND issueFunction in parentsOf("issuetype = Coding AND NOT resolution = EMPTY")

instead, so that you're checking for a lack of empty resolutions instead of looking for something that's in Done.

 

I hope that helps!

Suggest an answer

Log in or Sign up to answer