2023-09-13 14:20:45

This commit is contained in:
Steph Ango
2023-09-13 14:20:45 -07:00
parent 97e1da4d2b
commit 0a2475e59c
14 changed files with 81 additions and 38 deletions

View File

@@ -9,8 +9,8 @@ table without id
artist as Artist, artist as Artist,
genre as Genre, genre as Genre,
rating as Rating rating as Rating
from #albums
where where
contains(category, [[Albums]]) and
contains(genre,this.file.link) contains(genre,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -13,8 +13,8 @@ table without id
file.link as Title, file.link as Title,
year as Year, year as Year,
rating as Rating rating as Rating
from #books
where where
contains(category,[[Books]]) and
contains(author,this.file.link) contains(author,this.file.link)
sort rating desc sort rating desc
``` ```
@@ -25,8 +25,9 @@ sort rating desc
table without id table without id
file.link as Title, file.link as Title,
published as Published published as Published
from #clippings where
where author = this.file.link or contains(author,this.file.link) contains(category,[[Clippings]]) and
contains(author,this.file.link)
sort rating desc sort rating desc
``` ```
@@ -36,7 +37,8 @@ sort rating desc
table without id table without id
file.link as Podcast, file.link as Podcast,
published as Published published as Published
from #episodes where
where contains(guests,this.file.link) contains(category,[[Podcast episodes]]) and
contains(guests,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -14,8 +14,10 @@ url: https://stephango.com/
```dataview ```dataview
table without id table without id
file.link as Title, published as Publish file.link as Title,
where author = this.file.link or contains(author,this.file.link) published as Published
where
contains(author,this.file.link)
sort rating desc sort rating desc
``` ```
@@ -23,8 +25,10 @@ sort rating desc
```dataview ```dataview
table without id table without id
file.link as Meeting, date as Date file.link as Meeting,
where contains(people,this.file.link) date as Date
where
contains(people,this.file.link)
sort file.name desc sort file.name desc
``` ```

View File

@@ -8,8 +8,11 @@ tags:
```dataview ```dataview
table without id table without id
file.link as Title, year as Year, rating as Rating file.link as Title,
from #books year as Year,
where author = this.file.link or contains(author,this.file.link) rating as Rating
where
contains(category,[[Books]]) and
contains(author,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -1,6 +1,8 @@
```dataview ```dataview
list 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 sort file.ctime asc
``` ```

View File

@@ -14,9 +14,13 @@ last:
## Trips ## Trips
```dataview ```dataview
table start as Start, end as End table without id
from #trips file.link as Trip,
where contains(loc, this.file.link) start as Start,
end as End
where
contains(category, [[Trips]]) and
contains(location, this.file.link)
sort file.name desc sort file.name desc
``` ```
@@ -33,8 +37,12 @@ coordinates: [[Madrid]]
``` ```
```dataview ```dataview
table rating as Rating, type as "Type" table without id
from #places file.link as City,
where contains(loc, this.file.link) rating as Rating,
type as Type
where
contains(category, [[Places]]) and
contains(location, this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -7,8 +7,12 @@ tags:
## Games ## Games
```dataview ```dataview
table year as Year, rating as Rating table without id
from #games file.link as Game,
where maker = this.file.link or contains(maker,this.file.link) year as Year,
rating as Rating
where
contains(category,[[Games]]) and
contains(maker,this.file.link)
sort year desc sort year desc
``` ```

View File

@@ -5,7 +5,7 @@ tags:
```dataview ```dataview
table without id table without id
file.link as Title, file.link as Title,
rating as "Rating" rating as Rating
where where
contains(genre,this.file.link) contains(genre,this.file.link)
sort rating desc sort rating desc

View File

@@ -6,9 +6,13 @@ tags:
```dataview ```dataview
table without id table without id
file.link as Meeting, people as People, date as Date file.link as Meeting,
from #meetings or #dates people as People,
where !contains(file.name,"Template") and contains(type,this.file.link) date as Date
where
contains(category, [[Meetings]]) and
!contains(file.name,"Template") and
contains(type,this.file.link)
sort date desc sort date desc
limit 50 limit 50
``` ```

View File

@@ -5,8 +5,8 @@ tags:
```dataview ```dataview
table without id table without id
file.link as Name file.link as Name
from #people
where where
contains(category, [[People]]) and
!contains(file.name,"Template") !contains(file.name,"Template")
sort file.name asc sort file.name asc
``` ```

View File

@@ -17,7 +17,7 @@ table without id
file.link as Place, file.link as Place,
rating as Rating, rating as Rating,
location as Location location as Location
from #places
where where
contains(category, [[Places]]) and
contains(type, this.file.link) contains(type, this.file.link)
``` ```

View File

@@ -4,8 +4,16 @@ tags:
--- ---
```dataview ```dataview
table without id table without id
file.link as Item, maker as "Maker", price as "Price", rating as Rating, purchased as Purchased file.link as Item,
from #products maker as Maker,
where type = this.file.link or contains(type,this.file.link) price as Price,
sort purchased desc, rating desc, file.mtime desc rating as Rating,
purchased as Purchased
where
contains(category, [[Products]]) and
contains(type,this.file.link)
sort
purchased desc,
rating desc,
file.mtime desc
``` ```

View File

@@ -1,8 +1,10 @@
# Recent entries # Recent entries
```dataview ```dataview
table created as Date table
where contains(file.outlinks, this.file.link) created as Date
where
contains(file.outlinks, this.file.link)
sort created desc sort created desc
limit 20 limit 20
``` ```

View File

@@ -3,8 +3,14 @@ tags:
- games/genres - games/genres
--- ---
```dataview ```dataview
table maker as "Maker", year as Year, rating as Rating table without id
from #games file.link as Game,
where !contains(file.name, "Template") and contains(genre, this.file.link) 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 sort rating desc
``` ```