I want to filter the issues created between 6am to 3pm, for which i have tried :
1)AND created > startOfDay("+6h") AND created < startOfDay("+15h")
But this only shows the current day issues created between 6am to 3pm.
2)AND created > startOfMonth("+6h") AND created < endOfMonth("+15h")
3)AND created >= "2018/06/01 6:00" AND created <= "2018/06/30 15:00"
But it shows the issue of the whole month,the 6am to 3pm filter can't be applied
Can anyone help me to "find the issues created between 6am to 3pm for all days of current month ??"