Hi people
Does anyone know what the query might be to exclude issues that contain a particular tag when I'm setting up a swimlane for my Kanban board?
Thanks,
Nick
Thanks, @Dave Mathijs - I did try this, but when I add this, it runs, but seemingly disregards the rest of my query. For example, here's my query:
project = xx AND issuetype in (Story, Task) AND labels != ABC OR labels is EMPTY AND fixVersion in ("Q1")
What's happening now is, whilst it is successfully excluding issues with the label; "ABC", it is no longer honouring the "Fix version", and instead returning a bunch of issues with NO "Fix version" assigned.
Maybe it is looking for "Fix version" to be EMPTY as well?
Thanks in advance,
Nick
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to place add the brackets before the first labels and add them after EMPTY.
project = xx AND issuetype in (Story, Task) AND (labels != ABC OR labels is EMPTY) AND fixVersion in ("Q1")
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.