Type: Function
Function: CONTAINS
Syntax: CONTAINS(list, term|term_list)
Description: Returns true if the list contains the provided value or any of the provided values (if an array is provided).
Sample usage:
CONTAINS(label_names, "bug")returns true iflabel_namescontains thebuglabel.CONTAINS(label_names, ["bug", "enhancement"])returnstrueiflabel_namescontains eitherbug,enhancementor both.CONTAINS(assignee_usernames, "johndoe")returnstrueifjohndoeis in the list of assignees, otherwise it returnsfalse.
βMisc.:
βlist - Seen as collections of comma separated values.
