58 lines
829 B
Markdown
58 lines
829 B
Markdown
|
|
||
|
##### Today: Due
|
||
|
```tasks
|
||
|
not done
|
||
|
due today
|
||
|
```
|
||
|
|
||
|
##### Today: Scheduled
|
||
|
```tasks
|
||
|
not done
|
||
|
scheduled today
|
||
|
path does not include _Templates
|
||
|
```
|
||
|
|
||
|
##### Week: Due
|
||
|
```tasks
|
||
|
not done
|
||
|
due after sunday and before saturday
|
||
|
path does not include _Templates
|
||
|
```
|
||
|
|
||
|
##### Week: Scheduled
|
||
|
```tasks
|
||
|
not done
|
||
|
scheduled after sunday and before saturday
|
||
|
path does not include _Templates
|
||
|
```
|
||
|
|
||
|
##### Missed: Due
|
||
|
```tasks
|
||
|
not done
|
||
|
due before date(today)
|
||
|
path does not include _Templates
|
||
|
```
|
||
|
|
||
|
##### Missed: Scheduled
|
||
|
```tasks
|
||
|
not done
|
||
|
scheduled before date(today)
|
||
|
path does not include _Templates
|
||
|
```
|
||
|
|
||
|
##### No Due
|
||
|
```tasks
|
||
|
not done
|
||
|
no due date
|
||
|
no scheduled date
|
||
|
path does not include _Templates
|
||
|
```
|
||
|
|
||
|
##### All other tasks
|
||
|
|
||
|
```dataviewjs
|
||
|
dv.taskList(dv.pages('-"_Templates"').file.tasks
|
||
|
.where(t => !t.completed &&
|
||
|
!t.text.includes("#task")
|
||
|
))
|
||
|
```
|