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_names
field value excludes the “bug” label.NOT_CONTAINS(label_names, ["bug", "enhancement"])
returnstrue
if thelabel_names
field value excludes both the “bug” and “enhancement” labelsNOT_CONTAINS(assignee_usernames, "johndoe")
returnstrue
if theassignee_usernames
field value excludes the “johndoe” username.