I've been using this filter query "issueFunction not in linkedIssuesOf("resolution = unresolved", blocks) as part of my search for tickets that are currently not blocked and are ready for the next person in the queue. When trying to update using the ScriptRunner Enhanced Search, I get the following error:
What's the best way to update this part of the query?
Thank you in advance for your help!
Hi,
Enhanced Search doesn't support not in which is why you're having issues. What you can do as a workaround is create and saved the enhanced filter to be:
issueFunction in linkedIssuesOf("resolution = unresolved", blocks)
Then in your advanced filter search enter in the JQL search bar:
filter != <name of filter>
See if that works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.