include
Filter items by a subquery you can define to include expression which is automatically extracted to the original query:
tracker.id = 3 AND include ={summary='test' or summary='test2'}
same as
tracker.id = 3 AND (summary='test' or summary='test2')
You use the include expression recursively. Hence, an include expression can contain other include expressions.