user3429660
user3429660

Reputation: 2732

JQL query to retrieve issues where I participated

I try to list all issues where I was a participant. On top of issues asssigned to me, I want to include issues that followed the normal procedure: somebody else created them, they were assigned to me, I solved them, and re-assigned to somebody else for testing.

So far, I tried participant=currentUser(), but it return only issues where I am a reporter or assignee.

If I look in a specific Jira issue, it shows as participants: userA, myUser, userC. But the query above includes this issue only for userA (reporter) or userC (assignee).

How can I write a JQL query to retrieve all issues where my iser was a particilant?

Upvotes: 0

Views: 705

Answers (3)

ibai
ibai

Reputation: 1318

Additional clauses such as commentedBy and watcher can help.

assignee was currentUser() OR assignee = currentUser() OR commentedBy = currentUser() OR watcher = currentUser()

Upvotes: 1

Tharindu Rajapaksha
Tharindu Rajapaksha

Reputation: 112

Try this query

text ~ currentuser()

This query will fetch you all the issues which your user is mentioned, participated in, assigned and etc.

Upvotes: 0

user3429660
user3429660

Reputation: 2732

So far, the best solution I found was:

assignee was currentUser() or assignee = currentUser()

Upvotes: 0

Related Questions