project details = XXXXX
Would you please help with a JQL?
Thank you!
This worked for me issueFunction in issueFieldMatch("project = XXXX", "summary", "\\[API\\]")
This is the best option if you have Scriptrunner installed. 👍
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Since your summary field contains square brackets, you should escape the square brackets with a backslash (\
). Here's how you can structure your JQL query:
summary ~ "\\[API\\]"
Hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
summary ~ "\\[API\\]" is giving all data with [API] (square brackets included & excuded.)
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.