Issue while creating a jq for a filter

Alessia Brugin 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-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
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 June 8, 2017

Thank you very much :) It worked!!!

Suggest an answer

Log in or Sign up to answer