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

Compare with Current View Page History

« Previous Version 2 Next »

Use case

Return the keys of the sub-tasks that do not have original estimate or story points estimate.

Expression

Create and configure a Smart field using this expression in Jira expression mode:

issue.subtasks.filter(s => s?.originalEstimate == null && s?.customfield_10016 == null).map(i => i.key).join(", ")