It it possible to use JQL within Groovy Scripts for a condition?
I'm using an Insight Post Function but need to have the following JQL as a condition
"Company Product" IN iqlFunction("\"Supporting Agent\" IS NOT EMPTY")
If the condition is true, then the issue is assigned to the Supporting Agent.
Hi,
Instead of using groovy script you could try to use the Insight post function called Assign Issue based on attribute in a selected Insight Object.
This post function will automatically assign the issue to the user in the attribute you mention in the post function. If attribute is empty for the selected object, no one will be assigned. No condition is thus needed.
Yeah that makes sense, Maybe this was a bad example as it was the first use case I came across. But I will need to make use of this at a later date with other JQL, so the question still remains, how does one validate JQL within a Groovy script,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Trying
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.fields.CustomField;
def value = issue.getCustomFieldValue(ComponentAccessor.getCustomFieldManager().getCustomFieldObject(10241));
if (value != null && "Support Team".equals(value["NGC"])) {
return true;
} ELSE {
return false;
}
But no success yet
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.