Obsidian/Paper Queue.md

32 lines
867 B
Markdown

**Waiting for first pass:**
```dataview
table authors as "Authors", publish_date as "Date Published", last_import as "Date Imported"
from #ToRead
sort publish_date desc
where file.name != "Literature Note"
```
**Waiting for second pass:**
```dataview
table authors as "Authors", publish_date as "Date Published", last_import as "Date Read"
from #InFirstPass
sort publish_date desc
where file.name != "Literature Note"
```
**Waiting for third pass:**
```dataview
table authors as "Authors", publish_date as "Date Published", last_import as "Date Read"
from #InSecondPass
sort publish_date desc
where file.name != "Literature Note"
```
**Recently read:**
```dataview
table authors as "Authors", publish_date as "Date Published", last_import as "Date Read"
from "Literature Notes" and -#ToRead
sort publish_date desc
where last_import >= date(today) - dur(7day)
```