使用Jira Issue Search,我的项目中有两个自定义日期字段。 我想要一个过滤器,它返回来自字段1的最早日期的问题。 我希望另一个过滤器返回来自字段2的最新日期的问题。
有没有人做过类似的查询。我不知道正确的语法和检查Atlassian文档没有提到有关max或min的任何内容。
答案 0 :(得分:1)
您可以使用免费插件(例如Script Runner。
创建自己的JQL函数要从Jira数据库获取数据,请使用
查找自定义字段的IDselect * from customfield
然后使用类似的东西
select
pkey
, summary
, datevalue
from
customfieldvalue c
, jiraissue i
where
i.id=c.issue
and c.customfield = 10071
and c.datevalue in (select min(datevalue) from customfieldvalue where customfield = 10071)
答案 1 :(得分:0)
运行查询并按日期字段排序。第一行是最大值或最小值