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

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

    I run it like this -

    created > startOfDay(-0d)
    

    It gives me all issues created today. When you change -0d to -1d, it will give you all issues created yesterday and today.

提交回复
热议问题