Query for priority and label in kanban swimlanes

Deleted user May 22, 2014

I'm trying to set up swimlanes on a kanban with the following queries:

Fast Track: priority = "High " ORDER BY createdDate

Pull Next: (priority = "Medium " OR priority = Low) ORDER BY createdDate

Backlog: (priority = "High " OR priority = "Medium " OR priority = Low) AND labels = backlog

HOLD: (priority = "High " OR priority = "Medium " OR priority = Low) AND labels = hold

The Backlog and HOLD swimlanes are not showing. Can you help me structure my query so that issues labeled with "backlog" or "hold" adhere to their respective swimlanes?

2 answers

1 accepted

0 votes
Answer accepted
Deleted user June 13, 2014

Hi John,

I managed to get it to work with the following queries:

Fast Track: priority = "High " AND labels not in (backlog, hold) OR labels is EMPTY

Pull Next: priority in ("Medium ", Low) AND labels not in ('backlog', 'hold') OR labels is EMPTY

Backlog: labels = backlog

Hold: labels = hold

Thanks!

1 vote
John Paz
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.
May 26, 2014

I think you should change the priority statements.

If I understand correctly, for Backlog, you're looking to include any issues labeled "backlog," and has a priority level of either High, Medium, or Low. If that's the case, this query would probably work better:

priority in ("High", "Medium", "Low") AND labels = backlog

Please reply back and let me know if it worked.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events