Type: Function
Function: NOT_CONTAINS
Syntax: NOT_CONTAINS(list, term|term_list)
Description: Returns true if the list excludes the value or all of the values (if an array is provided).
Sample usage:
NOT_CONTAINS(label_names, "bug")returns true if thelabel_namesfield value excludes the “bug” label.NOT_CONTAINS(label_names, ["bug", "enhancement"])returnstrueif thelabel_namesfield value excludes both the “bug” and “enhancement” labelsNOT_CONTAINS(assignee_usernames, "johndoe")returnstrueif theassignee_usernamesfield value excludes the “johndoe” username.
