Hi guys,
I need to three queries but i am a bit stuck on best query to use.
I need a query for the following:-
1) Something that has been less than 18 hours ago
Currently my JQL is this :-
project = SF AND issuetype in ("Bug - Dev", "Bug - FE", Improvement) AND status = "To Start" AND created >= -18h order by created DESC
I believe the above is correct however would like to know if there is anything i have missed.
2) Something that has been created more than 24 hours ago
project = SF AND issuetype in ("Bug - Dev", "Bug - FE", Improvement) AND status = "To Start" AND created >= -1d order by created DESC
Is the above correct?
3) Something that has been created between 18 and 24 hours ago
project = SF AND issuetype in ("Bug - Dev", "Bug - FE", Improvement) AND status = "To Start" AND created >= 18h AND created <= 24h order by created DESC
Is the above correct for what i am trying to achieve as i'm not sure how range area works?
Please let me know :)
Thanks,
Ravi
Hi Ravi,
1 is correct, for 2 your query is returning what was created in the last 24 hours, if you are trying to get at what was created before 24hours, you have to change it so "created<=-1d" (the negative makes this a bit confusing sometimes ;)...)
as for your query number 3, if you want to get at what was created more than 18 hours ago but before 24 hours ago, you need to change you query to "created <= -18h AND created >= -24h"
unless my logic in negative numbers is also failing me now. Let me knwo if this worked for you, cheers
Merle
Perfect, I think query 3 from what you have said is what i'm after and it's working! Regarding 24 hours i think the query is correct as we want to show issues that have been in the system more than 24 hours.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
glad I could help ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.