Combining Expressions
You can combine any number of field expressions to form more complicated filters. Write
@title:busbar @description:example
to find all models whose title contain the word busbar and whose description contain the word example. As for search words in the field value of a single field expression, a space character between two field expressions is interpreted as a boolean AND. Write
@title:busbar OR @description:example
to combine the two field expressions with a boolean OR.
You can also use parentheses to control operator precedence. Write
@saveType:draft AND (@owner:Alice OR @lastModifiedBy:Alice)
to find all drafts that are either owned or were last modified by user Alice.