2023-09-13 14:20:45
This commit is contained in:
@@ -8,8 +8,11 @@ tags:
|
||||
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Title, year as Year, rating as Rating
|
||||
from #books
|
||||
where author = this.file.link or contains(author,this.file.link)
|
||||
file.link as Title,
|
||||
year as Year,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Books]]) and
|
||||
contains(author,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -1,6 +1,8 @@
|
||||
|
||||
```dataview
|
||||
list
|
||||
where contains(type, this.file.link) and !contains(file.name, "Template")
|
||||
where
|
||||
contains(type, this.file.link) and
|
||||
!contains(file.name, "Template")
|
||||
sort file.ctime asc
|
||||
```
|
||||
@@ -14,9 +14,13 @@ last:
|
||||
## Trips
|
||||
|
||||
```dataview
|
||||
table start as Start, end as End
|
||||
from #trips
|
||||
where contains(loc, this.file.link)
|
||||
table without id
|
||||
file.link as Trip,
|
||||
start as Start,
|
||||
end as End
|
||||
where
|
||||
contains(category, [[Trips]]) and
|
||||
contains(location, this.file.link)
|
||||
sort file.name desc
|
||||
```
|
||||
|
||||
@@ -33,8 +37,12 @@ coordinates: [[Madrid]]
|
||||
```
|
||||
|
||||
```dataview
|
||||
table rating as Rating, type as "Type"
|
||||
from #places
|
||||
where contains(loc, this.file.link)
|
||||
table without id
|
||||
file.link as City,
|
||||
rating as Rating,
|
||||
type as Type
|
||||
where
|
||||
contains(category, [[Places]]) and
|
||||
contains(location, this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -7,8 +7,12 @@ tags:
|
||||
## Games
|
||||
|
||||
```dataview
|
||||
table year as Year, rating as Rating
|
||||
from #games
|
||||
where maker = this.file.link or contains(maker,this.file.link)
|
||||
table without id
|
||||
file.link as Game,
|
||||
year as Year,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Games]]) and
|
||||
contains(maker,this.file.link)
|
||||
sort year desc
|
||||
```
|
||||
@@ -5,7 +5,7 @@ tags:
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Title,
|
||||
rating as "Rating"
|
||||
rating as Rating
|
||||
where
|
||||
contains(genre,this.file.link)
|
||||
sort rating desc
|
||||
|
||||
@@ -6,9 +6,13 @@ tags:
|
||||
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Meeting, people as People, date as Date
|
||||
from #meetings or #dates
|
||||
where !contains(file.name,"Template") and contains(type,this.file.link)
|
||||
file.link as Meeting,
|
||||
people as People,
|
||||
date as Date
|
||||
where
|
||||
contains(category, [[Meetings]]) and
|
||||
!contains(file.name,"Template") and
|
||||
contains(type,this.file.link)
|
||||
sort date desc
|
||||
limit 50
|
||||
```
|
||||
@@ -5,8 +5,8 @@ tags:
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Name
|
||||
from #people
|
||||
where
|
||||
contains(category, [[People]]) and
|
||||
!contains(file.name,"Template")
|
||||
sort file.name asc
|
||||
```
|
||||
@@ -17,7 +17,7 @@ table without id
|
||||
file.link as Place,
|
||||
rating as Rating,
|
||||
location as Location
|
||||
from #places
|
||||
where
|
||||
contains(category, [[Places]]) and
|
||||
contains(type, this.file.link)
|
||||
```
|
||||
@@ -4,8 +4,16 @@ tags:
|
||||
---
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Item, maker as "Maker", price as "Price", rating as Rating, purchased as Purchased
|
||||
from #products
|
||||
where type = this.file.link or contains(type,this.file.link)
|
||||
sort purchased desc, rating desc, file.mtime desc
|
||||
file.link as Item,
|
||||
maker as Maker,
|
||||
price as Price,
|
||||
rating as Rating,
|
||||
purchased as Purchased
|
||||
where
|
||||
contains(category, [[Products]]) and
|
||||
contains(type,this.file.link)
|
||||
sort
|
||||
purchased desc,
|
||||
rating desc,
|
||||
file.mtime desc
|
||||
```
|
||||
@@ -1,8 +1,10 @@
|
||||
# Recent entries
|
||||
|
||||
```dataview
|
||||
table created as Date
|
||||
where contains(file.outlinks, this.file.link)
|
||||
table
|
||||
created as Date
|
||||
where
|
||||
contains(file.outlinks, this.file.link)
|
||||
sort created desc
|
||||
limit 20
|
||||
```
|
||||
@@ -3,8 +3,14 @@ tags:
|
||||
- games/genres
|
||||
---
|
||||
```dataview
|
||||
table maker as "Maker", year as Year, rating as Rating
|
||||
from #games
|
||||
where !contains(file.name, "Template") and contains(genre, this.file.link)
|
||||
table without id
|
||||
file.link as Game,
|
||||
maker as Maker,
|
||||
year as Year,
|
||||
rating as Rating
|
||||
where
|
||||
contains(categoy, [[Games]]) and
|
||||
!contains(file.name, "Template") and
|
||||
contains(genre, this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
Reference in New Issue
Block a user