Multiple array filters

Multiple filters are accepted, even using a sub-object (depth-limited, a filter cannot go deeper in the object tree).

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

Data

[
  { "name": "Matrix"        , "year": 1999, "meta": { "type": "SF"    } },
  { "name": "The Green Mile", "year": 1999, "meta": { "type": "Drama" } }
]

The movie of 1999 was {d[year=1999, meta.type="SF"].name}.

Last updated