Obsidian/Paper Queue.md

941 B

Waiting for first pass:

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:

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:

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:

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)