i have trying to use this JQL query (assignee = currentUser() AND resolution = empty AND due <= -1d) but it doesn't seem to be working. Any help will be much appreciated.
Hello,
Try like this:
assignee = currentUser() AND resolution is empty AND due <= -1d
how do i need to configure the fields when creating an issue? as of now its not showing any issues although i have issue assigned to me that has 3h remaining. Thank you @Alexey Matveev for helping out
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your query should select all issues, which were due 1 day ago. Due is the Due Date field
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Alexey Matveev. One more thing, do i need to write anything in the brackets of current user?
I assigned myself a task to test out the query you gave but it when i searched using the query it didn't come up nor did it come when i put username instead of "currentUser ()".
Only after i removed assignee so that it just remained "resolution is empty AND due <= -1d" did it show results. Thank again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You do not need to put something in brackets. You just write like this:
assignee = currentUser()
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.
You are most welcome!
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.