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

前端 未结 8 1057
挽巷
挽巷 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:34

    You might use one of our plugins: the JQL enhancement functions - check out https://plugins.atlassian.com/plugin/details/22514

    There is no interval on day, but we might add it in a next iteration, if you think it is usefull.

    Francis.

    0 讨论(0)
  • 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

    0 讨论(0)
提交回复
热议问题