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.
[
{ "name": "Matrix" , "year": 1999, "meta": { "type": "SF" } },
{ "name": "The Green Mile", "year": 1999, "meta": { "type": "Drama" } }
]
Template
Result
The movie of 1999 was {d[year=1999, meta.type="SF"].name}.
The movie of 1999 was Matrix.
Last modified 1yr ago