Combining Expressions
You can combine any number of field expressions to form more complicated filter queries. Write
@title:busbar @description:example
to find all versions 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
@itemSaveType:draft AND (@owner:Alice OR @savedBy:Alice)
to find all drafts that are either owned or were saved by user Alice.