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?
@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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.