Our new Appfire Documentation Space is now live!

Take a look here! If you have any questions please email support@appfire.com

Skip to end of metadata
Go to start of metadata

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

Compare with Current View Page History

« Previous Version 26 Current »

Abstract

This code snippet filters values from a multi-valued field based on a condition

Logic

Use the "filter" Nunjucks filter to filter the values that meet the condition

Snippet 

{# Filter the values from the multi-valued field using "filter" filter #}
{{ issue.fields['<Multi-valued field name>'] | filter(<Condition>) | join(",","name") }}

Placeholders

PlaceholderDescriptionExample
<Multi-valued field name>Name of the multi-valued fieldWatchers
<Condition>Condition to meet for the value to be filtered{accountId:'accountId:5ca5b1469a000c1180956957'}

Context

The output of this snippet is a subset of the existing values of a multi-valued field which you could use in a template to:

  • Set a multi-valued field to a subset of the existing values in one of the Set field value post-functions. Example: Set a Multi-user picker type field to the users in the Watchers field who belong to the Europe/Berlin time zone:

    {{ issue.fields['Watchers'] | filter({"timeZone": "Europe/Berlin"}) | join(",","accountId") }}
  • Send an email to all the users of the Request Participants when a meeting schedule has been changed, except to the current user in the Email issue post-function

    {{ issue.fields['Request Participants'] | filter({accountId:currentUser.accountId} , true) | join(',','accountId') }}

References

Filter by label

There are no items with the selected labels at this time.

  • No labels