### Dates
Note that `date()` is also a [function](https://blacksmithgu.github.io/obsidian-dataview/reference/functions/#dateany), which can be called on text to extract dates.
| 表示方法 | 説明 |
| ------------------ | -------------------------------------------------- |
| `date(2021-11-11)` | A date, November 11th, 2021 |
| `date(today)` | A date representing the current date |
| `date(now)` | A date representing the current date and time |
| `date(tomorrow)` | A date representing tomorrow's date |
| `date(yesterday)` | A date representing yesterday's date |
| `date(sow)` | A date representing the start of the current week |
| `date(eow)` | A date representing the end of the current week |
| `date(som)` | A date representing the start of the current month |
| `date(eom)` | A date representing the end of the current month |
| `date(soy)` | A date representing the start of the current year |
| `date(eoy)` | A date representing the end of the current year |
| | |