Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

unable to add status "In progress" to the status list (status in)

Victoria Luskin
Contributor
September 22, 2024

 

Hi,

I am trying to create the following query (to get the list of all epics), which are not closed, but their children are closed/fixed/accepted.

 

project = XXX AND status not in (Closed,Accepted) and issueFunction in linkedIssuesOf("status in( fixed,accepted,closed)", "has epic") and not issueFunction in linkedIssuesOf("status in (open, acknowledged, "In Progress")", "has epic")

it works fine without "In progress" status, but when I add it, I get error: 

 

Error in the JQL Query: Expecting ')' or ',' but got 'In'. (line 3, character 70)

1. How can it be resolved?

2. Is there another way to exclude all epics with children status: open, acknowledged, In progress?

3. What is the query to get all epics without children at all?

 

Thanks,

 

1 answer

1 accepted

3 votes
Answer accepted
Manoj Gangwar
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 22, 2024

Hi @Victoria Luskin 

The status "In Progress" is enclosed in single quotes because it has a space.

project = XXX AND status not in (Closed,Accepted) 

AND issueFunction in linkedIssuesOf("status in (fixed,accepted,closed)", "has epic") 

AND not issueFunction in linkedIssuesOf("status in (open, acknowledged, 'In Progress')", "has epic")

To find all epics that don’t have any linked issues (children), you can use this query:

project = XXX AND issuetype = Epic AND not issueFunction in hasLinks("is Epic of")

 

Victoria Luskin
Contributor
September 22, 2024

@Manoj Gangwar thank you very much!

Like 2 people like this

Suggest an answer

Log in or Sign up to answer