我想在Jira中编写一个过滤器,其中包括分配给多个用户的问题,但是首先分配给我的问题(特别是在这种情况下是可能与秒表时间跟踪器相关的问题的过滤器)。
我不知道如何在JQL中执行此操作。如果我在SQL中这样做,我会做:
select *
from jira
where condition_one or condition_two
order by decode(assignee, current_user, 1, 0) desc,
other_sort_field
或者,甚至更好(因为我可以通过子过滤器进行有效排序):
select *
from jira
where condition_one
order other_sort_field
union all
select *
from jira
where condition_two
order other_sort_field
在JQL中可以做这样的事吗?我还没找到任何东西?
答案 0 :(得分:0)
您想对此过滤器做什么?
在这两种情况下,使用的JQL可以是以下形式:
assignee in (user1, user2, user3) and status != closed order by assignee
将按用户字母顺序显示