Forums

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

Issue while creating a jq for a filter

Alessia Brugin
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!
June 8, 2017

Hello,

we'd need your help to resolve an issue.. We need a filter for a specific project, related to a specific sprint. We tried in some ways but the result is that the jq filters all the bug and task of the whole project instead of filter only the ones related to the specific sprint.. Could you please help me? Here pasted our jq that is not woring properly:

project = "name of the project"  AND Sprint = 4  AND type = Bug OR type = Task   AND status != Completed ORDER BY priority, status, updated

Thank you in advance :)

 

1 answer

0 votes
Nic Brough -Adaptavist-
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 8, 2017

It's the operater precedence, your "or" is not joining the clauses in the way you think.

What your query actually says is  (Project, sprint 4, bug), or tasks, and completed

Try explicitly boxing the "or" out:

project = "name of the project"  AND Sprint = 4  AND (type = Bug OR type = Task) AND status != Completed

Alessia Brugin
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!
June 8, 2017

Thank you very much :) It worked!!!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events