Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jira query for comments with specific text

Tags:

syntax

jira

How do you look for jira tickets with comments containing two text strings with many possible strings in between the two. For example, I want to search for tickets with a comment containing a name "Smith" and later in the comment, the word "fixed".

like image 234
Bruce Avatar asked Feb 06 '26 04:02

Bruce


1 Answers

The search query would look like this:

comment ~ 'Smith fixed'

like image 133
rorschach Avatar answered Feb 12 '26 17:02

rorschach