find_exp

Finds first element in an array with property value meeting given condition

{% 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 }}

Results in following output:

{
  "first_name": "Ann",
  "last_name": "Smith",
  "position": "Accountant",
  "city": "New York",
  "age": 25
}

Last updated