When I create a filter with Application ~ UPMS
it returns issues with application = UPMS.online, application = OEM UPMS etc etc as well
How do I use this filter to return only those issues which has Application = UPMS (only the exact text match) ?
Is there any syntax that I use to stop word stemming?
Hi,
try this JQL --> text ~ your search word
text ~ "search multiple words"
you can try contains
Here is a documentation for some help - https://confluence.atlassian.com/jiracoreserver073/advanced-searching-861257209.html?_ga=2.51414569.1063235327.1599069083-165847533.1584594684#Advancedsearching-textPerformingtextsearches
Thanks Sudarshan. Tried that too.
text ~ "UPMS"
test ~ 'UPMS'
everything returns text = UPMS.online, text= OEM UPMS along with text = UPMS
I just want text = UPMS
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Rushmi If you're on Jira Server, can you see if the below query works using the escaping quotes:
text ~ "\"UPMS\"~0"
Note: The above query wouldn't work for Jira Cloud. If you have Scriptrunner add-on already installed you can try with the following function
issueFunction in issueFieldExactMatch(subquery, fieldName, regularExpression)
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.