Bug #18003
Updated by Peter Amstutz over 3 years ago
api/app/models/groups.rb
<pre>
if ! ["=","<","<=",">",">=","!=","like","ilike","in","not in","is_a"].include?(filter[1].downcase)
errors.add :properties, "filter operator is not valid (must be =,<,<=,>,>=,!=,like,ilike,in,not in,is_a)"
return
end
</pre>
This is missing the 'contains' and 'exists' operators.