Long text (more than 50 characters) on search query

Arjay Villavicencio October 13, 2021

I have this ticket that have a long summary/title, and I learned that I cannot search for more than 50 characters.

*******************

Example:

Summary: Check App Service Require Client Certificates - App Service Require Client Certificates Disabled

*******************

My Query:

project = "KY" AND summary~"Check App Service Require Client Certificates - App Service Require Client Certificates Disabled"

The query above don't return any result if I search for the exact term. It will only show result if I decreases the text, which is not ideal in our use case.

Example: project = "KY" AND summary~"Check App Service Require Client Certificates - Ap"

What are the ways or the right query if I want to search the exact value of the summary that is longer that 50 characters?

1 answer

1 accepted

1 vote
Answer accepted
Moses Thomas
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 13, 2021

@Arjay Villavicencio  The max character length for summary is 255

have you tried this

project= "KY" and summary ~ "\"full summary\""

this will find the  items that contain exact match of text in summary

if you have  the script runner addon  installed  you can also do this

issueFunction in issueFieldExactMatch(subquery, fieldname, regexp)

issueFunction in issueFieldExactMactch("project=ky","summary","full summary")

Kind regards,

Moses

Arjay Villavicencio October 14, 2021

Great! This one works!

Like Moses Thomas likes this

Suggest an answer

Log in or Sign up to answer