Forums

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

Can anyone help me to construct a JQL to find all the bugs of feature with custom field value ?

Yatiraj Sharma
Contributor
March 7, 2023

I want to find all the Bugs of Features which has custom field value like below.

project = ABC AND issuetype = Bug AND issue in parentIssuesOf("cf[12118] ~ 'Proposition'")

Or using issues in issuesInEpics("project = ABC  AND "cf[12118] ~ 'Proposition'")

 

1 answer

0 votes
Yatiraj Sharma
Contributor
March 7, 2023

Have tried issueIn Epics however if you have custom field then you have to use \'{custom field name}'\ within the subquery of the function.

project = ABC AND issueFunction in issuesInEpics("issuetype = Feature AND \'cf[12118]'\ ~ 'Proposition'") AND issuetype = Bug

Suggest an answer

Log in or Sign up to answer