You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

On this page


Use case

Check whether a Select List (cascading) field has a value in the transitioned issue.

This use case is valid for both conditions and validators. The only difference is that you can specify an additional error message when using a validator.


Configuration

Jira expression*

issue?.customfield_10075 != null && issue?.customfield_10075.child != null

The custom field must contain both a parent and a child value.

Please, replace the ID of the field codes with the corresponding one of your fields before using the expression.

Variations

Jira expression*

issue?.customfield_10075 != null ? issue?.customfield_10075.child != null : true

The custom field must contain a child value only if the field contains a parent value.

Jira expression*

issue?.customfield_10075.value

The custom field must contain a parent value. The child value is optional.

Related examples

If you still have questions, feel free to refer to our support team.