JIRA JQL searching by date - is there a way of getting Today() (Date) instead of Now() (DateTime)

前端 未结 8 1076
挽巷
挽巷 2021-02-02 05:11

I am trying to create some Issue Filters in JIRA based on CreateDate.

The only date/time function I can find is Now() and searches relative to

8条回答
  •  无人共我
    2021-02-02 05:41

    In case you want to search for all the issues updated after 9am previous day until today at 9AM, please try: updated >= startOfDay(-15h) and updated <= startOfDay(9h). (explanation: 9AM - 24h/day = -15h)

    You can also use updated >= startOfDay(-900m) . where 900m = 15h*60m

    Reference: https://confluence.atlassian.com/display/JIRA/Advanced+Searching

提交回复
热议问题