Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JQL Query

Erica Dover
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 17, 2023

How do you write a JQL query to filter a certain task to show in the Kanban board?

For example: I want to filter where the issue type is task, and the description contains the task name. 

I cannot find the field for the task name. 

 

1 answer

0 votes
Mikael Sandberg
Community Champion
August 17, 2023

Hi @Erica Dover,

Welcome to Atlassian Community!

In order to filter on issue type and description the JQL would look something like this:

issuetype = task AND description ~ "\"something in the description\""

The "\" ... \"" indicate that you are searching for that specific phrase, you can remove it and just use "" but your search result would be different since it would try and find issues with just parts of the phrase in it.

Erica Dover
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 18, 2023

Thank you, that did the trick! 

How could I also write the JQL to also include the subtasks that are associated with the particular task?

 

Thanks!

Suggest an answer

Log in or Sign up to answer