A query text to filter the results by, following the pattern: [Field] [Operator] [Value].
Multiple filters can be combined with commas, which act as logical AND.
String values must be enclosed in single quotes.
Common operators include: * eq — equal to * ne — not equal to * lt — less than * le — less than or equal to * gt — greater than * ge — greater than or equal to * lk — like (wildcard search, supports %)
Example:
name lk 'Build%' , status eq 'Active' - This will return builds with names starting with Build that are in Active status.