Views
Every view reads the same typed dataset — switching layout never changes what’s queried, only how it’s rendered.
- List — sortable, multi-select, full keyboard navigation.
- Table — inline edit, sortable headers, one row per Object.
- Board (Kanban) — group by any string or boolean property, drag between columns.
- Calendar — month grid, previous/next, today highlighted, pick which date property drives placement.
- Gallery — cover image or a type-colored placeholder, lazily-loaded.
- Graph — a Barnes–Hut force layout (O(n log n)), tested to a 10,000-node budget without dropping frames.
Time-oriented views
Section titled “Time-oriented views”- Daily Notes (⌘T) — a built-in
Daily NoteType, one Object per day. - Today — every Object whose any date/datetime property lands on today, aggregated in one place.
- Upcoming — reminders bucketed into Overdue / Today / This week / Later.
- Tasks — due-bucketed (Overdue / Today / Upcoming / No date / Done), quick-add, inline complete; completing a recurring task rolls its due date forward automatically.
Working views
Section titled “Working views”- Discussions — every open comment thread across the workspace, grouped by Object, with a resolved/unresolved toggle.
- Tabs — browser-style multi-Object editing with pinned tabs (
⌃Tab/⌃⇧Tabto cycle,⌘Wto close). - Trash — soft delete, restore, bulk purge.
Saved Views
Section titled “Saved Views”Any TQL query plus a chosen layout can be saved as a Saved View. You can edit or delete it like any other Object.
Next: Query language (TQL) — how these views actually select their data.