...
Code Block |
---|
If(asset.asset_type is in the supplied list of asset types
AND asset.assetid is in the supplied list of asset IDs
AND asset.itemid is in the supplied list of item IDs) {
AddAssetToResults();
} |
So, to reiterate, all filters have an "AND" relationship to every other filter.
...
Code Block |
---|
If(asset.asset_type is in the supplied list of asset types AND
asset.assetid is in the supplied list of asset IDs
AND asset.itemid is in the supplied list of item IDs
AND (asset_detail.name equals the supplied name OR asset's keywords meta data has a keyword, which equals the supplied keyword)) {
AddAssetToResults();
} |
In conclusion: a group can be compared to parentheses in an if-statement.