Filtering Arrays
findMatching Function
To filter array attributes according to specific criteria, you should use the #findMatching
function. The syntax of the output of the values matching your criteria is dependent on the type of array it is used upon.
This function may be used to filter array attributes containing:
Simple values, also referred to as primitives, which are values that have no properties:
string
("This is a string"),integer
(2),float
(5.6),datetime
(1994-11-05T13:15:30Z),boolean
(true).Objects, which are values with properties e.g. subscriptions
The syntax of this helper function is:
You may also use a combination of conditions in the criteria array. For example:
Property | Type | Description | |
|
| The user or event attribute that is used for the verification. e.g. | |
|
| The operator that will be used to asses whether the criteria is met or not. e.g. | |
|
| The value the | |
|
| Optional. The number of values matching your criteria that will be returned by the function. e.g. | |
|
| Syntax dependent on the type of array the function is used upon. See the Simple attributes and Objects sections below, depending on your use case. |
Simple Attributes
For simple values, you should use the helper function with the following syntax:
To output the values that match your criteria, you should use {{this}}
. {{this}}
will output the value satisfying your given condition/s.
Use Cases
Display all devices from a given manufacturer
For this example, we output the first 2 values containing the brand name Apple
. We use a user with the attribute below to display the result of the function:
The syntax of the helper function with our selected criteria is:
Once the function is evaluated, it displays the following block in the section where it is used in the message:
Objects
For object attributes, you should use the helper function with the following syntax:
Property | Description |
| The property of the object/s matching your criteria. For example, when working with a subscription, this may be the |
You may output as many properties as needed from the object
attribute matching your criteria.
Use Cases
Searching a list of subscriptions
For this example, we filter a user's subscriptions to find all of Pet Food subscriptions with deliveries scheduled in the next 7 days. The date used for the purpose of the calculation is 15/06/2018. To display the result of the function, we use an example user with the attribute below:
Additionally, to display the subscription delivery date in our preferred format, we use the formatting function #computeDate
. The syntax of the helper function with our selected criteria and date formatting is:
Once the function is evaluated, it displays the following block in the section where it is used in the message:
Fetching a specific subscription from a user profile and searching the product feed for additional information
For this example, we filter a user's subscriptions to find the first Laundry Detergent subscription with a delivery scheduled in the next 7 days. The date used for the purpose of the calculation is 11/06/2018. To display the result of the function, we use an example user with the attribute below:
Additionally, to display additional information regarding the product included in the subscription, we use the product helper function #findProduct
. The syntax of the helper function with our selected criteria and additional product information is:
Once the function is evaluated, it displays the following block in the section where it is used in the message:
UTM Parameters are parameters added to URLs to track the effectiveness of online marketing campaigns. When a link containing UTM parameters is clicked, the parameters identify the marketing campaign which has led to the link being clicked. This information can be parsed using analytics tools to guide future marketing activities.
each Function
The #each handlebar can display a certain child within an array which cannot be accessed via the value mapping. While this function does not allow filtering itself, we can use it with the Conditional Functions to filter required results.
This will fetch the data which is in the array. However, it will fetch all of the selected fields when the fields are available multiple times.
You can use conditions inside of the loop to conditionally display the information:
Last updated