You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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 ??"