2023-09-13 14:57:47
This commit is contained in:
34
Categories/Movies.md
Normal file
34
Categories/Movies.md
Normal file
@@ -0,0 +1,34 @@
|
||||
---
|
||||
tags:
|
||||
- categories
|
||||
---
|
||||
## Favorites
|
||||
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Movie,
|
||||
year as Year,
|
||||
rating as Rating,
|
||||
last as "Last seen",
|
||||
director as Director
|
||||
where
|
||||
contains(category,this.file.link)
|
||||
and rating > 9
|
||||
sort rating desc
|
||||
```
|
||||
|
||||
## Last seen
|
||||
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Movie,
|
||||
year as Year,
|
||||
rating as Rating,
|
||||
last as "Last seen",
|
||||
director as Director
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
last != "" and !contains(file.name, "Template")
|
||||
sort last desc
|
||||
limit 100
|
||||
```
|
||||
Reference in New Issue
Block a user