rename category to categories

This commit is contained in:
Steph Ango
2025-05-23 13:17:29 -07:00
parent fd7b6b2d84
commit 831af0dd26
92 changed files with 109 additions and 109 deletions

View File

@@ -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
```

View File

@@ -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")
```

View File

@@ -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
```

View File

@@ -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
```

View File

@@ -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
```

View File

@@ -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")
```

View File

@@ -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
```

View File

@@ -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

View File

@@ -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

View File

@@ -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
```

View File

@@ -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

View File

@@ -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
```

View File

@@ -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
```

View File

@@ -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
```

View File

@@ -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,

View File

@@ -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
```

View File

@@ -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
```

View File

@@ -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
```

View File

@@ -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