~ [[_Home]]
This view gives you context across the entirety of your ideaverse in ways previously almost impossible to achieve. It's sorted by recently modified.
```dataview
TABLE WITHOUT ID
choice(contains(file.path, "+"),
"✨ " + file.link,
choice(type = "thing",
"🧩 " + file.link,
choice(type = "statement",
"📣 " + file.link,
choice(type = "person",
"👤 " + file.link,
choice(type = "quote",
"💬 " + file.link,
choice(type = "question",
"❓ " + file.link,
choice(type = "dot-x",
"𝓧 " + file.link,
choice(type = "map",
"🗺️ " + file.link,
choice(type = "source" AND source-type = "book",
"📚 " + file.link,
choice(type = "source" AND source-type = "clipping",
"✂ " + file.link,
choice(type = "source" AND source-type = "course",
"⛳️ " + file.link,
choice(type = "source" AND source-type = "game",
"🎮 " + file.link,
choice(type = "source" AND source-type = "paper",
"🔬 " + file.link,
choice(type = "source" AND source-type = "show",
"📺 " + file.link,
choice(type = "source" AND source-type = "song",
"🎵 " + file.link,
choice(type = "source" AND source-type = "talk",
"🎤 " + file.link,
choice(type = "source-x",
"𝙓 " + file.link,
choice(type = "daily-note",
" — " + file.link,
choice(type = "record" AND record-type = "event",
"🎪 " + file.link,
choice(type = "record" AND record-type = "idea",
"💡 " + file.link,
choice(contains(file.path, "Calendar/Records/Logs"),
"🪵 " + file.link,
choice(type = "record" AND record-type = "meeting",
"☎️ " + file.link,
choice(type = "record" AND record-type = "nice-thing",
"🌈 " + file.link,
choice(type = "review",
"🔍 " + file.link,
choice(type = "area",
" – " + file.link,
choice(type = "project",
"⚗️ " + file.link,
choice(type = "work",
"🎨 " + file.link,
choice(contains(file.path, "x/Packs"),
"🎒 " + file.link,
choice(contains(file.path, "x/Templates"),
"📋 " + file.link,
choice(contains(file.path, "x/Visuals/Excalidraw"),
"✍️ " + file.link,
choice(contains(file.path, "x/Visuals/Images"),
"🖼️ " + file.link,
file.link))))))))))))))))))))))))))))))) as "Notes",
choice(contains(file.folder, "+"),
"`" + file.folder + "`",
type
) as "Parent Folder"
SORT file.mtime desc
LIMIT 177
```
---
Back to [[_Home]]