Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Example of how to create a Group:

  1. Go to the Search Editor 
  2. Click "Add group" 
  3. Add a filter 
  4. Choose a Condition 
  5. Rinse and repeat until satisfied.

View file
name2017-0103-2507_1508-3240-3938.mp4
height250

The Details panel view of the newly created group:

Image Removed

Image AddedThe Condition of each preceding filter in the group is applied to the following filter.

If we add this group to the filters used in the above example:

Image RemovedImage Added

Then the if-statement will be

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 one of the supplied keywordkeywords)) {
         AddAssetToResults();
}

...