Basic Mode

Basic mode lets you build filter queries by selecting a schema, object type, and adding rules. The app generates the AQL query for you behind the scenes.

Selecting Schema and Object Type

  1. Open the filter configuration
  2. Select an Object Schema, which is a top-level grouping in Jira Assets (e.g., “IT Assets”, “HR”)
  3. Select an Object Type, which is the kind of object you want to query (e.g., “Computer”, “Employee”, “Server”)

The schema and object type form the base of your query. Without any additional rules, the filter returns all objects of that type.

Adding Filter Rules

Rules narrow down which objects the filter returns. Click Add rule to create one.

Adding a filter rule

Each rule has three parts:

PartDescription
FieldThe attribute to filter on (e.g., “Status”, “Name”, “Location”)
OperatorHow to compare (e.g., equals, contains, starts with)
ValueThe value to compare against

Available Operators

OperatorDescriptionExample
=EqualsStatus = “Active”
!=Not equalsStatus != “Retired”
<, >, <=, >=Comparison (numbers and dates)“Purchase Date” > “2024-01-01”
likeContains textName like “web”
not likeDoes not contain textName not like “test”
startsWithStarts with textName startsWith “SRV”
endsWithEnds with textName endsWith “-prod”
inMatches any value in a listStatus in (“Active”, “Pending”)
not inDoes not match any value in a listStatus not in (“Retired”, “Disposed”)
is EMPTYHas no valueOwner is EMPTY
is not EMPTYHas a valueOwner is not EMPTY
matchesFilterMatches objects from another filterSee below

Multiple Rules

When you add multiple rules, they are combined with AND logic. All rules must match for an object to appear in the results.

For example, these two rules together mean “active computers in New York”:

  • Status = “Active”
  • Location = “NYC”

The matchesFilter Operator

The matchesFilter operator lets one filter reference another filter on the same page. This is useful for creating dependent or cascading filters.

When you select matchesFilter as the operator, the value dropdown shows other filters on the page. The rule resolves to the AQL query of the referenced filter at runtime.

Preview Panel

After configuring rules, the Results Preview shows a table of matching objects so you can verify the query before saving.

Filter preview panel

You can click on an object key in the preview to add a rule that pins the filter to that specific object.

Saving

Click Save to store the filter configuration. The filter name must be unique across all filters on the page.