Is it possible to create a query string that searches for
1) all types of issues where the assignee is me AND they're NOT closed
2) specifically userstories assigned to me that may have CLOSED status (well they all have this status in our system)
The problem is that a number of closed tasks are assigned to me, and when I mask them out this prevents me to see the closed US's assigned.
Tnx, Alexey
Can I combine them into 1 string?)
I have:
- open task (subtasks typically) assigned to me - I need to see them
- closed tasks assigned to me - I do not need them
- closed userstories assigned to me (because all US are closed after creation) - I need to see them because they "include" open tasks linked to these US's
Yes, you can join
It would be like this
assignee= currentUser() and ((issuetype != "Story" and status != Closed) OR (issuetype = "Story" ))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
or rather:
OR (issuetype = "User Story" ))
Brackets rule. Thanks a lot!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
K
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
I am not sure that I understood your second requirement
For the frist one it would be
assignee= currentUser() and status != Closed
For the second one
issuetype = "Story" and 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.