Dataview to filter inline fields with the value as internal links

Based on the advice given in this post, the YAML and dataview queries below are more robust.

%%
tags:: #movie
title:: [[Bullet Train]]
year:: [[2022]]
cast:: [[Brad Pitt]], [[Joey King]], [[Sandra Bullock]]
%%

Film Title

```dataview
TABLE 
title AS Title, 
year AS Year
FROM #movie 
WHERE contains(cast, [[Brad Pitt]])
SORT year DESC, title ASC
```

Film Title and Filtered Cast

```dataview
TABLE 
title AS Title, 
year AS Year,
filter(cast, (l) => l = [[Brad Pitt]]) as Cast
FROM #movie 
WHERE contains(cast, [[Brad Pitt]])
SORT year DESC, title ASC
```

Angel

4 Likes