Artificial intelligent assistant

Viewing all of my open tasks in Jira On Jira's homepage, it displays all tasks assigned to me, including tasks that are "closed", "obsolete", or "won't fix". I tried searching for tasks and filtering by status, but it doesn't display all of the open tasks assigned to me. Here's my search query: ![enter image description here]( I have a task assigned to me with the status "todo", but it isn't showing up in this search. How can I displayed a list of all tasks assigned to me, except tasks with status "closed", "done", "obsolete", or "won't fix"?

Just build your own query, excluding issues which have a certain status. Click the advanced button on the right to use JQL.

![enter image description here](

Your query would like something like:

`assignee = currentUser() and (status not in (Closed, Done, Obsolete))`

or

`assignee = currentUser() and resolved is EMPTY`

* * *

Learn to use JQL:

> JQL stands for JIRA Query Language (not to be confused with Java Query Language). It’s the most flexible way to search for issues in JIRA and is for everyone
>
> <

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy 66738c22945b71ef1bbd4200b898a03a