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

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 Leaders.
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 Leaders.
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 

Suggest an answer

Log in or Sign up to answer