I tried with this query its not giving correct result
issuetype = xyz and (status changed from submitted to "xxx" OR status changed to "xxx") and status changed by xxx
Hi @Mallikarjuna ,
when you say "is not working properly", you mean the query is not working at all and you get an error? Or it doesn't deliver a proper result wich you found out by looking on some sample issues?
Looking at this part of the query:
status changed from submitted to "xxx" OR status changed to "xxx"
Maybe you might expacting that you find all issues that were in status submitted and changed to either the "first xxx" or the "second xxx". But to achive this it has to be
status changed from submitted to "xxx" OR status changed from submitted to "yyy"
What should the result be.
This JQL will get all issues from type xyz, transferred from submitted to xxx and all issues from type xyz changed from any status to xyz
Both related to the status changed by a user xxx
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Mallikarjuna,
What result are you expecting with this query? If you want issues that were transitioned:
Then you'd need to update your query to:
issuetype = xyz and (status changed from submitted to "xxx" by xxx OR status changed to "xxx" by xxx)
Hope this helps!
- Manon
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 must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.