Multi Cascade JQL Search



The Multi Level Cascade Field supports useful operators in JQL. This page includes description of the most common ones.

IS operator

is empty and is not empty - allows you to find issues where values of the MLC field exist and don't exist respectively:

"Departments" is EMPTY



"Departments" is not EMPTY

Equals/Not Equals operators

= and !=  - allows to search by displayed values of the Multi Cascade:

"Departments" = "Austin - R&D"

searches all values which match with 'USA - Austin - R&D'.

searches all values which don't match with 'Berlin - Accounting and Finance'.

For correct searching this pattern must be followed "<option value>  - <option value> - <option value> " just like the MLC field views its value on issue screen.

  • Search value might be typed lowercase (but it's not case insensitive):



  • Wildcard support - MLC field search allows to use wildcard in 3 different types:

    • Head search:

      searches all values which start from 'France'.

      searches all values which start from 'France - Lyon'.

  •  

    • Tail search:

      searches all values which end with 'Block C'.

      searches all values which end with 'R&D - Block C'.

  •  

    • Single value search:

      searches all values which include 'Rotterdam'.

IN operator

MLC Field supports in operator:

searches all values which include 'Rotterdam' and match with 'Berlin - Accounting and Finance'.