I have a filter that working fine:
assignee in (currentUser()) AND status in ("In Code Review", "In Development", "In Progress", "In progress", Open) ORDER BY priority DESC, created DESC
But when I add: AND labels not in (qa_effort_only). It return nothing (no ticket found).
We should always add labels is empty. Like:
AND (labels not in (qa_effort_only) or labels is empty)
Hi @Yasin Arafat ,
Since you have only one condition you could try with
and labels != "qa_effort_only"
Also ... important to think what you want to do with items that have no labels. Maybe you have to add :
AND (labels not in (qa_effort_only) or labels is empty)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
and labels != "qa_effort_only" not working
but adding labels is empty works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.