I think you refer to the Create & Rename dialogs from v5. These have gone (for all sorts of good reasons) and the contrls are nw in the Inspector. I've written a
walkthrough for those used to the v5 way of doing things. Note that agent text matches are case sensitive by default (or unless you use
.icontains() which is case-inseitive regardless of other settings)
This is invalid syntax, if indeed the code you actually used:
$MyAttribute.contains"MyAttributeSetValue"The
.contains() operator needs parentheses around the match pattern:
$MyAttribute.contains("MyAttributeSetValue")Try the latter instead. Note that if the target attributes is a List or Set type then
.contains() behaves slightly differently as only whole individual list values can be matched, unlike for strings where partial matches are allowed.
Otherwise please post the exact query code used, the type of attribute targetted and the sort of value(s) you seek to match.