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

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