The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

How to search for a missing text in summary field

vrushali rao
June 10, 2024

I want to create a query which gives me a list of features which does not have the word "ML" in the summary field

2 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
Pavol Gočal
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
June 10, 2024

Hello,

you can try: summary !~ "ML"

You can adjust your query with text-search syntax.

 

0 votes
Mayuresh Kamble
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
June 10, 2024

Hi @vrushali rao ,

You can use the below JQL to retrieve the required list of issues:-

issuetype = "Feature" AND summary !~ "ML"


Regards,
Mayuresh