Forums

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

I am new to JQL and want a query to get the list of stories which has subtask of type defect

Narasimha Neelam
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!
September 25, 2019

A query to get the list of stories which has subtask of type defect.

 

For example 

Story 1 has two defect type sub task.

Story 2 has no defect type sub task

Story 3 has some defect type sub task

 

So I want to have a query where i can get story 1 and story 3 which has sub task of type defect.

1 answer

0 votes
Ste Wright
Community Champion
October 4, 2019

Hi @Narasimha Neelam

You'll need to nest a search within a search - this isn't usually possible based on normal JQL functions because when searching for parents / links it often limits it to one specific issue.

An alternative is to use a script application such as ScriptRunner - then you could do:

issueFunction in parentsOf("issuetype = Defect")

Ste

Suggest an answer

Log in or Sign up to answer