Obsidian/Paper Queue.md

32 lines
941 B
Markdown

**Waiting for first pass:**
```dataview
table file.name as "Paper", 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 file.name as "Paper", 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 file.name as "Paper", 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 file.name as "Paper", authors as "Authors", publish_date as "Date Published", last_import as "Date Read"
from "Literature Notes"
sort publish_date desc
where last_import >= date(today) - dur(7day)
```