I need to perform EXACT search. I am using below query:
issueFunction in issueFieldExactMatch("project = ABC and issuetype=DE", "summary", "FGH")
and it is returning correctly the issues with summary "FGH", but I want to list issues with summary "fgh" also.
I cannot use issueFieldMatch() because that would give results with nearby values as well like "fghij" or "ABCFGH".
I need to perform exact search but it should be case-INsensitive.
Also, any search with regular expression in issueFieldExactMatch() is not working, I do not uderstand why is that. As per documentation
below JQL should work:
issueFunction in issueFieldExactMatch("project = ABC and issuetype = DE", "Summary", "^T.st$")
I have issue with Summary "Test" but it is not giving any results.
Kindly help
Regards,
Swapnil Srivastav