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

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

    We're using Jira 6.2 and I use this query:

    updatedDate > startOfDay(-1d) AND updatedDate < endOfDay(-1)

    to return all of the issues that were updated from the previous day. You can combine with whichever queries you want to return the appropriate issues for the previous day.

提交回复
热议问题