Versions Compared

Key

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

...

When using the search bar, you can search Component Names and Tags using two types of matching strategies:

Expand
title1) String Simple string searching (with glob expressions) expressions - simple pattern matching

Iguana X supports searching using boolean and glob expression pattern matching. When you click on component #tags, they are added to the Dashboard filter as an “OR“, essentially created a list of the matching component tags you want to display on the Dashboard.

Here are a few useful techniques for filtering the Dashboard:

Code Block
languagelua
-- Search strings to match components names/tags with hl7 or #epic tags.
hl7 #epic 

-- Use quotations "... " to match components with #prod AND #dev tags.
“#prod #dev“

-- Use negation "-" to match components with hl7 but without the #epic tag.
hl7 -#epic

...