How can I query on Stories which Parent features have field "Program Increment = xxx"

Coen Van Bakel June 15, 2021

Tried to setup a query that shows all features and underlying stories, based on the parent field "Progam Increment = xx"

 

Tried:

"Program Increment" = 21.3 OR issueFunction in subtasksOf("Program Increment" = 21.3)

But get:

Error in the JQL Query: Expecting ')' or ',' but got '='. (line 1, character 79)

2 answers

0 votes
Daniel Ebers
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 20, 2021

Hi @Coen Van Bakel

your query, from it's syntax, seems not being far off:

"Program Increment" = 21.3 OR issuefunction in subtasksOf ('"Program Increment" = 21.3')

should do it (note the enclosing quotes ' ').

However, this would give you back sub-tasks which have a Program Increment 21.3 on it's parent (parent Issue).

Have you had a chance to check if the query from Niranjan solved your request?

In case it is not working/not giving the expected results for you could you please outline the hierarchy a bit further?

Regards,
Daniel

0 votes
Niranjan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 15, 2021

Hi @Coen Van Bakel - Could you try the jql 

project=ABC and type in (Features,Stories) and "Program Increment" = 21.3

Suggest an answer

Log in or Sign up to answer