What is the jql syntax to do quick filter only issues created by current user in Jira?
assignee = currentUser()
You may want to add some other search parameters to make the results more meaningful, but that will hopefully point you in the right direction.
Thanks for the answer. What I meant I think is to filter only issues reported by me, even thought the assignee might be someone else in my team.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In that case, here is what I would recommend doing. Set your Quick Filter up using the following JQL or add some additional parameters to make it relevant:
reporter = currentUser()
Then configure your Agile Board to use "Assignees" for its Swimlanes. This will give you the ability to see what is on each assignee's plate and then click the Quick Filter and see only the things that you opened in the same manner.
If you're already using Swimlanes for some other purpose or it can't work for some reason, you will need to create a quick filter for each possible Assignee, something along the lines of:
reporter = currentUser() and assignee = assignee1
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Reporter and assignee is not a creator. Issue creator can define different reporter when creating the issue or change it later if the person has the permission to do so.
However, the solution is straight forward for this one.
creator = currentUser()
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.