Array filters

Filter an array with attributes of objects instead of the reserved word i.

If the filter returns many rows, only the first occurrence is kept.

Data

[
  { "name": "Inception", "year": 2010 },
  { "name": "Matrix", "year": 1999 },
  { "name": "BTTF", "year": 1985 }
]

The movie of 1999 was {d[year=1999].name}

Last updated