{% json employees %}
[
{
"first_name": "Ann",
"last_name": "Smith",
"position": "Accountant",
"city": "New York",
"age": 25
},
{
"first_name": "Adam",
"last_name": "Fox",
"position": "Salesman",
"city": "New Jersey",
"age": 35
},
{
"first_name": "Angela",
"last_name": "Newman",
"position": "Accountant",
"city": "Boston",
"age": 43
}
]
{% endjson %}
{% assign find_exp_age_result = employees | find_exp: "item", "item.age < 40" %}
{{ find_exp_age_result | log }}
{
"first_name": "Ann",
"last_name": "Smith",
"position": "Accountant",
"city": "New York",
"age": 25
}