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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.