rename category to categories
This commit is contained in:
2
.obsidian/types.json
vendored
2
.obsidian/types.json
vendored
@@ -3,7 +3,7 @@
|
||||
"aliases": "aliases",
|
||||
"cssclasses": "multitext",
|
||||
"tags": "tags",
|
||||
"category": "multitext",
|
||||
"categories": "multitext",
|
||||
"created": "date",
|
||||
"genre": "multitext",
|
||||
"director": "multitext",
|
||||
|
||||
@@ -12,7 +12,7 @@ table without id
|
||||
year as Year,
|
||||
genre as Genre
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name, "Template")
|
||||
sort rating desc
|
||||
```
|
||||
@@ -9,6 +9,6 @@ table without id
|
||||
rating as Rating,
|
||||
last as Last
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
```
|
||||
@@ -12,7 +12,7 @@ table without id
|
||||
created as Added,
|
||||
genre as Genre
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name, "Template")
|
||||
sort rating desc, date asc
|
||||
```
|
||||
|
||||
@@ -10,7 +10,7 @@ table without id
|
||||
created as Clipped,
|
||||
published as Published
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name, "Template")
|
||||
sort clipped desc
|
||||
```
|
||||
@@ -8,7 +8,7 @@ table without id
|
||||
file.link as Company,
|
||||
url as Link
|
||||
where
|
||||
contains(category,this.file.link)
|
||||
contains(categories,this.file.link)
|
||||
and !contains(file.name, "Template")
|
||||
sort file.mtime desc
|
||||
```
|
||||
@@ -7,6 +7,6 @@ tags:
|
||||
table without id
|
||||
file.link as Event
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
```
|
||||
@@ -12,7 +12,7 @@ table without id
|
||||
rating as Rating,
|
||||
last as "Last played"
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name, "Template")
|
||||
sort last desc
|
||||
```
|
||||
|
||||
@@ -10,7 +10,7 @@ table without id
|
||||
people as People,
|
||||
date as Date
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
sort date desc
|
||||
limit 100
|
||||
|
||||
@@ -12,7 +12,7 @@ table without id
|
||||
last as "Last seen",
|
||||
director as Director
|
||||
where
|
||||
contains(category,this.file.link)
|
||||
contains(categories,this.file.link)
|
||||
and rating > 6
|
||||
sort rating desc
|
||||
```
|
||||
@@ -27,7 +27,7 @@ table without id
|
||||
last as "Last seen",
|
||||
director as Director
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
last != "" and !contains(file.name, "Template")
|
||||
sort last desc
|
||||
limit 100
|
||||
|
||||
@@ -8,7 +8,7 @@ table without id
|
||||
file.link as Person,
|
||||
filter(file.tags, (t) => t !="#people") as Tags
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
sort file.name asc
|
||||
```
|
||||
@@ -18,7 +18,7 @@ table without id
|
||||
type as Type,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.tags,"places/types") and
|
||||
!contains(file.name,"Template")
|
||||
sort last desc
|
||||
|
||||
@@ -12,7 +12,7 @@ table without id
|
||||
rating as Rating,
|
||||
published as "Published"
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name, "Template")
|
||||
sort published desc
|
||||
```
|
||||
@@ -6,7 +6,7 @@ related: "[[Podcast episodes]]"
|
||||
table without id
|
||||
file.link as Podcast, host as "Host"
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
sort file.name asc
|
||||
```
|
||||
@@ -8,7 +8,7 @@ table without id
|
||||
status as Status,
|
||||
published as Published
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
sort published desc
|
||||
```
|
||||
@@ -12,7 +12,7 @@ table without id
|
||||
maker as Maker
|
||||
where
|
||||
!contains(file.name, "Template") and
|
||||
contains(category, [[Products]])
|
||||
contains(categories, [[Products]])
|
||||
sort
|
||||
acquired desc,
|
||||
file.name,
|
||||
|
||||
@@ -10,7 +10,7 @@ table
|
||||
status as Status,
|
||||
url as URL
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
sort year desc
|
||||
```
|
||||
|
||||
@@ -7,7 +7,7 @@ tags:
|
||||
table without id
|
||||
file.link as Recipe, type as Type, author as Author, ingredients as Ingredients, rating as Rating
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
sort created desc
|
||||
```
|
||||
@@ -9,7 +9,7 @@ table without id
|
||||
rating as Rating,
|
||||
last as "Last seen"
|
||||
where
|
||||
contains(category, this.file.link) and
|
||||
contains(categories, this.file.link) and
|
||||
!contains(file.name, "Template")
|
||||
sort last desc
|
||||
```
|
||||
@@ -10,7 +10,7 @@ table without id
|
||||
start as Start,
|
||||
end as End
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name, "Template") and
|
||||
!contains(file.name, "Planning")
|
||||
sort start desc
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Clippings]]"
|
||||
author:
|
||||
- "[[Kevin Kelly]]"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Clippings]]"
|
||||
- "[[Posts]]"
|
||||
author:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Clippings]]"
|
||||
- "[[Posts]]"
|
||||
author:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Trips]]"
|
||||
start: 2023-09-12
|
||||
end: 2023-09-30
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Meetings]]"
|
||||
type: []
|
||||
date: 2023-09-14
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Posts]]"
|
||||
- "[[Clippings]]"
|
||||
created: 2023-09-14
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Projects]]"
|
||||
type:
|
||||
- "[[UI]]"
|
||||
|
||||
@@ -13,7 +13,7 @@ table without id
|
||||
type as Type
|
||||
where
|
||||
monthly-uses > 0 and
|
||||
contains(category, [[Products]])
|
||||
contains(categories, [[Products]])
|
||||
sort
|
||||
round(price/(monthly-uses*((date(today) - acquired).months)),2) asc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Albums]]"
|
||||
tags:
|
||||
- music
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Movies]]"
|
||||
cover: https://m.media-amazon.com/images/M/MV5BNzQzMzJhZTEtOWM4NS00MTdhLTg0YjgtMjM4MDRkZjUwZDBlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_SX300.jpg
|
||||
genre:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Recipes]]"
|
||||
- "[[Clippings]]"
|
||||
cuisine:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Board games]]"
|
||||
type: []
|
||||
maker:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Places]]"
|
||||
tags:
|
||||
- places
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Shows]]"
|
||||
genre:
|
||||
- "[[Sci-fi]]"
|
||||
|
||||
@@ -10,7 +10,7 @@ table without id
|
||||
genre as Genre,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category, [[Albums]]) and
|
||||
contains(categories, [[Albums]]) and
|
||||
contains(genre,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
@@ -14,7 +14,7 @@ table without id
|
||||
year as Year,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Books]]) and
|
||||
contains(categories,[[Books]]) and
|
||||
contains(author,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -26,7 +26,7 @@ table without id
|
||||
file.link as Title,
|
||||
published as Published
|
||||
where
|
||||
contains(category,[[Clippings]]) and
|
||||
contains(categories,[[Clippings]]) and
|
||||
contains(author,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -38,7 +38,7 @@ table without id
|
||||
file.link as Podcast,
|
||||
published as Published
|
||||
where
|
||||
contains(category,[[Podcast episodes]]) and
|
||||
contains(categories,[[Podcast episodes]]) and
|
||||
contains(guests,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Places]]"
|
||||
type:
|
||||
- "[[Cities]]"
|
||||
@@ -22,7 +22,7 @@ table without id
|
||||
start as Start,
|
||||
end as End
|
||||
where
|
||||
contains(category, [[Trips]]) and
|
||||
contains(categories, [[Trips]]) and
|
||||
contains(loc, this.file.link)
|
||||
sort file.name desc
|
||||
```
|
||||
@@ -48,7 +48,7 @@ table without id
|
||||
rating as Rating,
|
||||
type as Type
|
||||
where
|
||||
contains(category, [[Places]]) and
|
||||
contains(categories, [[Places]]) and
|
||||
contains(loc, this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Companies]]"
|
||||
- "[[Apps]]"
|
||||
tags:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Books]]"
|
||||
cover: "[[out-of-control.jpg]]"
|
||||
isbn: 201483408
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
@@ -14,7 +14,7 @@ table without id
|
||||
artist as Artist,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Albums]]) and
|
||||
contains(categories,[[Albums]]) and
|
||||
contains(artist,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -6,7 +6,7 @@ tags:
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Title,
|
||||
category as Category,
|
||||
categories as categories,
|
||||
rating as Rating
|
||||
where
|
||||
contains(genre,this.file.link)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Games]]"
|
||||
system: "[[Nintendo Switch]]"
|
||||
maker: "[[Nintendo]]"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Books]]"
|
||||
author:
|
||||
- "[[E. M. Forster]]"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Podcast episodes]]"
|
||||
tags:
|
||||
- podcast
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Podcasts]]"
|
||||
host:
|
||||
- "[[Steph Ango]]"
|
||||
@@ -15,7 +15,7 @@ table without id
|
||||
guests as Guest,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Podcast episodes]]) and
|
||||
contains(categories,[[Podcast episodes]]) and
|
||||
contains(show,this.file.link)
|
||||
sort episode desc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category: "[[People]]"
|
||||
categories: "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
- actors
|
||||
@@ -12,7 +12,7 @@ table without id
|
||||
year as Year,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Movies]]) and
|
||||
contains(categories,[[Movies]]) and
|
||||
contains(cast,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Albums]]"
|
||||
tags:
|
||||
- music
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category: "[[Apps]]"
|
||||
categories: "[[Apps]]"
|
||||
tags:
|
||||
- apps
|
||||
maker: ""
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category: "[[People]]"
|
||||
categories: "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
- authors
|
||||
@@ -12,7 +12,7 @@ table without id
|
||||
year as Year,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Books]]) and
|
||||
contains(categories,[[Books]]) and
|
||||
contains(author,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Board games]]"
|
||||
type: []
|
||||
maker:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Books]]"
|
||||
author: []
|
||||
cover:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Places]]"
|
||||
type:
|
||||
- "[[Cities]]"
|
||||
@@ -22,7 +22,7 @@ table without id
|
||||
start as Start,
|
||||
end as End
|
||||
where
|
||||
contains(category, [[Trips]]) and
|
||||
contains(categories, [[Trips]]) and
|
||||
contains(loc, this.file.link)
|
||||
sort file.name desc
|
||||
```
|
||||
@@ -48,7 +48,7 @@ table without id
|
||||
rating as Rating,
|
||||
type as Type
|
||||
where
|
||||
contains(category, [[Places]]) and
|
||||
contains(categories, [[Places]]) and
|
||||
contains(loc, this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Clippings]]"
|
||||
tags:
|
||||
- clippings
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Coffee]]"
|
||||
maker:
|
||||
producer:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Companies]]"
|
||||
tags:
|
||||
- companies
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Conference sessions]]"
|
||||
conference:
|
||||
speaker:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Events]]"
|
||||
type: "[[Conferences]]"
|
||||
series:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[People]]"
|
||||
phone:
|
||||
twitter:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
@@ -14,7 +14,7 @@ table without id
|
||||
year as Year,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Movies]]) and
|
||||
contains(categories,[[Movies]]) and
|
||||
contains(director,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Emails]]"
|
||||
created: {{date}}
|
||||
tags:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Events]]"
|
||||
tags:
|
||||
- events
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Food]]"
|
||||
tags:
|
||||
- food
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Companies]]"
|
||||
tags:
|
||||
- companies
|
||||
@@ -12,7 +12,7 @@ table without id
|
||||
year as Year,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Games]]) and
|
||||
contains(categories,[[Games]]) and
|
||||
contains(maker,this.file.link)
|
||||
sort year desc
|
||||
```
|
||||
@@ -6,7 +6,7 @@ tags:
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Title,
|
||||
category as Category,
|
||||
categories as categories,
|
||||
rating as Rating
|
||||
where
|
||||
contains(genre,this.file.link)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Hosting]]"
|
||||
start:
|
||||
end:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Meetings]]"
|
||||
type:
|
||||
- "[[Job Interviews]]"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Meditations]]"
|
||||
tags:
|
||||
- note
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Meetings]]"
|
||||
type: []
|
||||
date: {{date}}
|
||||
|
||||
@@ -10,7 +10,7 @@ table without id
|
||||
people as People,
|
||||
date as Date
|
||||
where
|
||||
contains(category, [[Meetings]]) and
|
||||
contains(categories, [[Meetings]]) and
|
||||
!contains(file.name,"Template") and
|
||||
contains(type,this.file.link)
|
||||
sort date desc
|
||||
|
||||
@@ -8,7 +8,7 @@ table without id
|
||||
file.link as Movie,
|
||||
rating as "Rating"
|
||||
where
|
||||
contains(category,[[Movies]]) and
|
||||
contains(categories,[[Movies]]) and
|
||||
contains(genre,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Movies]]"
|
||||
cover:
|
||||
genre: []
|
||||
|
||||
@@ -10,7 +10,7 @@ table without id
|
||||
genre as Genre,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Albums]]) and
|
||||
contains(categories,[[Albums]]) and
|
||||
contains(genre,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category: "[[People]]"
|
||||
categories: "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
- musicians
|
||||
@@ -14,7 +14,7 @@ table without id
|
||||
genre as Genre,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Albums]]) and
|
||||
contains(categories,[[Albums]]) and
|
||||
contains(artist,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
@@ -14,7 +14,7 @@ table without id
|
||||
file.link as Meeting,
|
||||
date as Date
|
||||
where
|
||||
contains(category,[[Meetings]]) and
|
||||
contains(categories,[[Meetings]]) and
|
||||
contains(people,this.file.link)
|
||||
sort file.name desc
|
||||
```
|
||||
@@ -7,7 +7,7 @@ tags:
|
||||
table without id
|
||||
file.link as Name
|
||||
where
|
||||
contains(category, [[People]]) and
|
||||
contains(categories, [[People]]) and
|
||||
!contains(file.name,"Template")
|
||||
sort file.name asc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Places]]"
|
||||
tags:
|
||||
- places
|
||||
|
||||
@@ -20,7 +20,7 @@ table without id
|
||||
rating as Rating,
|
||||
loc as Location
|
||||
where
|
||||
contains(category, [[Places]]) and
|
||||
contains(categories, [[Places]]) and
|
||||
!contains(file.name,"Template") and
|
||||
contains(type, this.file.link)
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Podcast episodes]]"
|
||||
tags:
|
||||
- podcast
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Podcasts]]"
|
||||
host: []
|
||||
rating:
|
||||
@@ -14,7 +14,7 @@ table without id
|
||||
guests as Guest,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Podcast episodes]]) and
|
||||
contains(categories,[[Podcast episodes]]) and
|
||||
contains(show,this.file.link)
|
||||
sort episode desc
|
||||
```
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Posts]]"
|
||||
tags:
|
||||
- posts
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Products]]"
|
||||
type:
|
||||
maker:
|
||||
|
||||
@@ -11,7 +11,7 @@ table without id
|
||||
rating as Rating,
|
||||
acquired as Acquired
|
||||
where
|
||||
contains(category, [[Products]]) and
|
||||
contains(categories, [[Products]]) and
|
||||
!contains(file.name,"Template") and
|
||||
contains(type,this.file.link)
|
||||
sort
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Projects]]"
|
||||
type: []
|
||||
org: []
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Real estate]]"
|
||||
tags:
|
||||
- places
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Recipes]]"
|
||||
cuisine:
|
||||
type: []
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Places]]"
|
||||
type:
|
||||
- "[[Restaurants]]"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Show episodes]]"
|
||||
show:
|
||||
season:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Shows]]"
|
||||
genre: []
|
||||
year:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Trips]]"
|
||||
start:
|
||||
end:
|
||||
|
||||
@@ -10,7 +10,7 @@ table without id
|
||||
year as Year,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category, [[Games]]) and
|
||||
contains(categories, [[Games]]) and
|
||||
!contains(file.name, "Template") and
|
||||
contains(genre, this.file.link)
|
||||
sort rating desc
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category:
|
||||
categories:
|
||||
- "[[Games]]"
|
||||
maker:
|
||||
genre: []
|
||||
|
||||
Reference in New Issue
Block a user