Type: Function
Function: CONTAINS_ALL
Syntax: CONTAINS_ALL(list, term|term_list)
Description: Returns `true
if the list contains ALL the provided values.
Sample usage:
CONTAINS_ALL(label_names, "bug")
returnstrue
iflabel_names
contains thebug
label.CONTAINS_ALL(label_names, ["bug", "enhancement"])
returnstrue
iflabel_names
contains bothbug
andenhancement
.CONTAINS(assignee_usernames, ["john", "jenny"])
returnstrue
if bothjohn
andjenny
are in the list of assignees, otherwise it returnsfalse
.