filter(prop("Tasks"), current.Status.contains("Done"))
-
Let’s say there’s a relation property named Tasks containing three items: [Item 1, Item 2, Item 3]. Each item has a status property called Status:
- Item 1 with status Not Started
- Item 2 with status In Progress
- Item 3 with status Done
The filter looks for the page with the Status Done, current.Status.contains("Done"), and filters the pages that meet this condition.