/
JQL Compatibility for Limitless Cascading Level Dropdown

JQL Compatibility for Limitless Cascading Level Dropdown

The Limitless Cascading Level Dropdown custom field supports specific JQL operators for querying issues effectively.


Supported Operators

  1. ~ (Contains)

    • Use this operator to search for issues where the selected value in the cascading field contains the specified substring.

    • Example:

      "Limitless Cascading Level Dropdown" ~ "Level1"

       

      This query returns all issues where the cascading field contains "Level1" in any of its levels.

  2. !~ (Does Not Contain)

    • Use this operator to search for issues where the selected value in the cascading field does not contain the specified substring.

    • Example:

      "Limitless Cascading Level Dropdown" !~ "Level1"

       

       

      This query returns all issues where the cascading field does not contain "Level1" in any of its levels.

  3. is

    • Use this operator to search for issues where the cascading field has a specific value.

    • Example:

      "Limitless Cascading Level Dropdown" is "Level1"

       

      This query returns all issues where the cascading field matches the exact value "Level1".

  4. is not

    • Use this operator to search for issues where the cascading field does not have a specific value.

    • Example:

      This query returns all issues where the cascading field does not match the exact value "Level1 ".