I wrote a query to filter issue on aword in summary:
summary ~ "\\[CF\\]" AND summary !~ "CF"
where I want issues where summary has '[CF]' but not just 'CF'. I only want to find those with brackets on. This doesn't work.
Any help is appreciated.
Hi @Neha Madan
Try with this: issueFunction in issueFieldMatch("", summary, "\\[CF\\].*")
Hope this helps
Thanks Carlos but as soon as i use this
issueFunction in issueFieldMatch('', 'summary', '\\[CF\\]')
The rapid board stops loading issues. And there wasn't any syntax error. Am i doing something wrong here?
When I used this in 'search for issues'
i got these errors
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah, Thanks Moses! I limited it and it gives result. So I am using it for card color on rapid board.
If it's a single issueFieldMatch query it works fine but if I do something like
issueFunction in issueFieldMatch("project = 'ABC'" ,"summary", "\\[TEST1\\]") OR issueFunction in issueFieldMatch("project = 'ABC'" ,"summary", "\\[TEST2\\]")
I cannot add this under card color.
but this is working under quick filters successfully
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Neha MadanThe query provided by Carlos is correct you will need to wait for the Query to generate the result it is not that it hang its is search, performing match. but if you want to make the query faster then you will have to limit project
Syntax issueFieldMatch(Subquery, Fieldname, reg ex) now you should have something like this to make it faster
issueFunction in issueFieldMatch("Project in (AT, ...)" , "summary", "\\[CF\\].*")
Best!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Got the answer it was the syntax error answered here: https://community.atlassian.com/t5/Answers-Developer-Questions/Scripted-JQL-Functions-Error/qaq-p/484242
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.