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

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

    Just for the sake of keeping the information up-to-date, with at least JIRA 7.3.0 (maybe older as well) you can explicitly specify the date in multiple formats:

    • 'yyyy/MM/dd HH:mm';
    • 'yyyy-MM-dd HH:mm';
    • 'yyyy/MM/dd';
    • 'yyyy-MM-dd';
    • period format, e.g. '-5d', '4w 2d'.

    Example:

    updatedDate > '2018/06/09 0:00' and updatedDate < '2018/06/10 15:00'

提交回复
热议问题