Hi Folks,
I would like to create a filter wich shows me all issues created exactly 2 weeks ago.
Queries like "created <= -2w" shows me all issues created within 2 weeks.
The query "created = -2w" shows me nothing.
The query "(created <= -14d and created >= -15d)" shows me issue from 2 days.
What am I missing?
Michael,
Try using the start/end of day functions, like
created >= startOfDay(-15d) and created < endOfDay(-15d)
Cheers,
Matheus
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.