Available Operators
By default, if no operator is specified, theeq operator is used. field[eq]=value is equivalent to field=value.
Fields can be filtered using operators in square brackets: field[operator]=value
eq: Equals (default if no operator specified)neq: Not equalsgt: Greater thangte: Greater than or equallt: Less thanlte: Less than or equalset: Is set (is not null and not an empty string)notset: Is not set (null or empty string)contains: Contains string (case-sensitive)notcontains: Does not contain string (case-sensitive)in: In array (comma-separated values)notin: Not in array (comma-separated values)