Query type: LIST
Recently updated notes
Create a simple list of notes you edited recently.
Required fields: No custom fields required
```dataview
LIST file.link
FROM "Notes"
SORT file.mtime DESC
LIMIT 20
```
How to customize: Use a smaller folder source to avoid mixing every note in your vault.
Query type: LIST
Research notes tagged with a topic
List notes that belong to a research topic tag.
Required fields: Tags
```dataview
LIST file.link
FROM #research
SORT file.mtime DESC
```
How to customize: Replace #research with your own tag, such as #ai, #marketing, or #book.
Query type: LIST
Daily notes index
Show daily notes from a folder and keep the newest note first.
Required fields: No custom fields required
```dataview
LIST file.link
FROM "Daily"
SORT file.name DESC
LIMIT 30
```
How to customize: If your daily notes are named by date, file.name sorting usually works well.
Query type: LIST
Notes in a folder with a specific tag
Combine folder and tag logic by filtering tags after choosing a folder source.
Required fields: Tags
```dataview
LIST file.link
FROM "Notes"
WHERE contains(file.tags, "idea")
SORT file.mtime DESC
```
How to customize: Use the tag text without # inside contains when checking file.tags.