How to get results for exactly particular date? not including previous date or day after data
Or simply:
created > "2017/04/07" and created < "2017/04/08"
One way is to do a search for issues created between two timestamps.
For example, to get issues created today, you can do:
created >= "2017-04-07 00:00" AND created < "2017-04-08 00:00"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just want to query jira to get created tickets for particular date
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.