%%
date:: [[2023-04-23]]
parent::
%%
# [[Amsterdam]]
## Restaurants
```dataview
TABLE description
where contains(type, "restaurant") and
contains(lower(location),"amsterdam")
```
## Hotels
```dataview
table description from "/"
where contains(lower(location), "amsterdam") and
contains(type,"hotel")
```