How do I create a filter for looking Task with labels not included "Apple2019" on it?
I tried:
labels !~ Apple"
labels !~ "Apple2019"
Both is throwing me error:
The operator '!~' is not supported by the 'labels' field.
Hi Karmandroid,
PLease try JQL:
type=Task and label != "Apple2019"
Yep, I just noticed it, was using wrong operators.
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Probably you also want to retrieve issues not having labels at all... so use:
type=Task and (label != "Apple2019" OR label is EMPTY)
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
how would you add a wild card where there are no labels that start with Apple?
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.